From 9f84a8d340ae486cb72ee0b7ceb3191a193dc6d6 Mon Sep 17 00:00:00 2001 From: Michael Mann Date: Mon, 5 Nov 2012 03:36:07 +0000 Subject: Add a few more expert_add_info_format calls to giop dissector which requires packet_info* structure and proto_item* to be filtered down through the generated functions. Also removed some excessive whitespace. svn path=/trunk/; revision=45911 --- epan/dissectors/packet-coseventcomm.c | 240 +- epan/dissectors/packet-cosnaming.c | 457 +- epan/dissectors/packet-giop.c | 103 +- epan/dissectors/packet-giop.h | 14 +- epan/dissectors/packet-parlay.c | 29566 +++++--------------------------- epan/dissectors/packet-tango.c | 1146 +- tools/wireshark_gen.py | 264 +- 7 files changed, 4619 insertions(+), 27171 deletions(-) diff --git a/epan/dissectors/packet-coseventcomm.c b/epan/dissectors/packet-coseventcomm.c index 622debc73b..0017431ee5 100644 --- a/epan/dissectors/packet-coseventcomm.c +++ b/epan/dissectors/packet-coseventcomm.c @@ -49,19 +49,6 @@ #endif -static int hf_operationrequest = -1;/* Request_Operation field */ - - /* Operation filters */ -static int hf_CosEventComm_PushConsumer_push_data = -1; -static int hf_CosEventComm_PullSupplier_pull_return = -1; -static int hf_CosEventComm_PullSupplier_try_pull_return = -1; -static int hf_CosEventComm_PullSupplier_try_pull_has_event = -1; - /* User exception filters */ - -static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset); - - - /* Initialise the protocol and subtree pointers */ static int proto_coseventcomm = -1; static gint ett_coseventcomm = -1; @@ -70,11 +57,17 @@ static gint ett_coseventcomm = -1; /* Initialise the initial Alignment */ static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ +static int hf_operationrequest = -1;/* Request_Operation field */ + /* Operation filters */ +static int hf_CosEventComm_PushConsumer_push_data = -1; +static int hf_CosEventComm_PullSupplier_pull_return = -1; +static int hf_CosEventComm_PullSupplier_try_pull_return = -1; +static int hf_CosEventComm_PullSupplier_try_pull_has_event = -1; + /* User exception filters */ -/* Initialise the Registered fields */ +static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset); -/* TODO - Use registered fields */ /* Begin Exception Helper Functions */ @@ -89,16 +82,13 @@ static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - proto_tree *tree _U_; if (!header->exception_id) return FALSE; - return FALSE; /* user exception not found */ - } /* @@ -107,53 +97,31 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr static void decode_CosEventComm_PushConsumer_push(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -162,51 +130,29 @@ decode_CosEventComm_PushConsumer_push(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_CosEventComm_PushConsumer_disconnect_push_consumer(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -215,51 +161,29 @@ decode_CosEventComm_PushConsumer_disconnect_push_consumer(tvbuff_t *tvb _U_, pac static void decode_CosEventComm_PushSupplier_disconnect_push_supplier(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -268,51 +192,29 @@ decode_CosEventComm_PushSupplier_disconnect_push_supplier(tvbuff_t *tvb _U_, pac static void decode_CosEventComm_PullSupplier_pull(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -321,53 +223,31 @@ decode_CosEventComm_PullSupplier_pull(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_CosEventComm_PullSupplier_try_pull(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); proto_tree_add_boolean(tree, hf_CosEventComm_PullSupplier_try_pull_has_event, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -376,51 +256,29 @@ decode_CosEventComm_PullSupplier_try_pull(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_CosEventComm_PullSupplier_disconnect_pull_supplier(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -429,51 +287,29 @@ decode_CosEventComm_PullSupplier_disconnect_pull_supplier(tvbuff_t *tvb _U_, pac static void decode_CosEventComm_PullConsumer_disconnect_pull_consumer(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -511,7 +347,7 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M if(header->message_type == Reply) { /* fill-up info column */ col_append_fstr(pinfo->cinfo, COL_INFO, " op = %s",operation); - }; + } /* fill-up the field */ pi=proto_tree_add_string(ptree, hf_operationrequest, tvb, 0, 0, operation); PROTO_ITEM_SET_GENERATED(pi); @@ -521,19 +357,13 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M static gboolean dissect_coseventcomm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) { - - gboolean stream_is_big_endian; /* big endianess */ proto_item *item _U_; proto_tree *tree _U_; - - stream_is_big_endian = is_big_endian(header); /* get endianess */ + gboolean stream_is_big_endian = is_big_endian(header); /* get endianess */ /* If we have a USER Exception, then decode it and return */ - if ((header->message_type == Reply) && (header->rep_status == USER_EXCEPTION)) { - return decode_user_exception(tvb, pinfo, ptree, offset, header, operation, stream_is_big_endian); - } switch(header->message_type) { @@ -597,7 +427,6 @@ dissect_coseventcomm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int * return TRUE; } - break; case CancelRequest: @@ -619,13 +448,10 @@ dissect_coseventcomm(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int * } /* End of main dissector */ - /* Register the protocol with Wireshark */ - -void proto_register_giop_coseventcomm(void) { - +void proto_register_giop_coseventcomm(void) +{ /* setup list of header fields */ - static hf_register_info hf[] = { /* field that indicates the currently ongoing request/reply exchange */ {&hf_operationrequest, {"Request_Operation","giop-coseventcomm.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}}, @@ -645,46 +471,28 @@ void proto_register_giop_coseventcomm(void) { }; /* Register the protocol name and description */ - proto_coseventcomm = proto_register_protocol("Coseventcomm Dissector Using GIOP API" , "COSEVENTCOMM", "giop-coseventcomm" ); - proto_register_field_array(proto_coseventcomm, hf, array_length(hf)); - proto_register_subtree_array(ett,array_length(ett)); - } - /* register me as handler for these interfaces */ - -void proto_reg_handoff_giop_coseventcomm(void) { - - +void proto_reg_handoff_giop_coseventcomm(void) +{ /* Register for Explicit Dissection */ - register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PullConsumer", proto_coseventcomm ); /* explicit dissector */ - /* Register for Explicit Dissection */ - register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PullSupplier", proto_coseventcomm ); /* explicit dissector */ - /* Register for Explicit Dissection */ - register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PushConsumer", proto_coseventcomm ); /* explicit dissector */ - /* Register for Explicit Dissection */ - register_giop_user_module(dissect_coseventcomm, "COSEVENTCOMM", "CosEventComm/PushSupplier", proto_coseventcomm ); /* explicit dissector */ - /* Register for Heuristic Dissection */ - register_giop_user(dissect_coseventcomm, "COSEVENTCOMM" ,proto_coseventcomm); /* heuristic dissector */ - - } diff --git a/epan/dissectors/packet-cosnaming.c b/epan/dissectors/packet-cosnaming.c index 93ab0854c6..c1d61e71b7 100644 --- a/epan/dissectors/packet-cosnaming.c +++ b/epan/dissectors/packet-cosnaming.c @@ -49,6 +49,14 @@ #endif +/* Initialise the protocol and subtree pointers */ +static int proto_cosnaming = -1; +static gint ett_cosnaming = -1; + + +/* Initialise the initial Alignment */ +static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ + static int hf_operationrequest = -1;/* Request_Operation field */ /* Operation filters */ @@ -88,35 +96,16 @@ static int hf_CosNaming_NamingContext_CannotProceed_rest_of_name = -1; static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset); - /* Struct prototype declaration Start */ - /* Struct = IDL:omg.org/CosNaming/NameComponent:1.0 */ -static void decode_CosNaming_NameComponent_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 _U_); - +static void decode_CosNaming_NameComponent_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:omg.org/CosNaming/Binding:1.0 */ -static void decode_CosNaming_Binding_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 _U_); - +static void decode_CosNaming_Binding_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct prototype declaration End */ - -/* Initialise the protocol and subtree pointers */ -static int proto_cosnaming = -1; -static gint ett_cosnaming = -1; - - -/* Initialise the initial Alignment */ -static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ - - - -/* Initialise the Registered fields */ - -/* TODO - Use registered fields */ - /* * IDL Enums Start */ @@ -153,6 +142,7 @@ static const value_string CosNaming_NamingContext_NotFoundReason[] = { static void decode_ex_CosNaming_NamingContext_NotFound(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item *item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -160,17 +150,16 @@ decode_ex_CosNaming_NamingContext_NotFound(tvbuff_t *tvb _U_, packet_info *pinfo guint32 i_CosNaming_NamingContext_NotFound_rest_of_name; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_NotFound_why, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_NotFound_why, tvb, *offset-4, 4, u_octet4); u_octet4_loop_CosNaming_NamingContext_NotFound_rest_of_name = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_NotFound_rest_of_name, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_NotFound_rest_of_name); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_NotFound_rest_of_name, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_NotFound_rest_of_name); for (i_CosNaming_NamingContext_NotFound_rest_of_name=0; i_CosNaming_NamingContext_NotFound_rest_of_name < u_octet4_loop_CosNaming_NamingContext_NotFound_rest_of_name; i_CosNaming_NamingContext_NotFound_rest_of_name++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } @@ -180,6 +169,7 @@ decode_ex_CosNaming_NamingContext_NotFound(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_ex_CosNaming_NamingContext_CannotProceed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item *item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_CannotProceed_rest_of_name; @@ -188,14 +178,13 @@ decode_ex_CosNaming_NamingContext_CannotProceed(tvbuff_t *tvb _U_, packet_info * get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_CosNaming_NamingContext_CannotProceed_rest_of_name = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_CannotProceed_rest_of_name, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_CannotProceed_rest_of_name); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_CannotProceed_rest_of_name, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_CannotProceed_rest_of_name); for (i_CosNaming_NamingContext_CannotProceed_rest_of_name=0; i_CosNaming_NamingContext_CannotProceed_rest_of_name < u_octet4_loop_CosNaming_NamingContext_CannotProceed_rest_of_name; i_CosNaming_NamingContext_CannotProceed_rest_of_name++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } @@ -211,7 +200,6 @@ decode_ex_CosNaming_NamingContext_CannotProceed(tvbuff_t *tvb _U_, packet_info * static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - proto_tree *tree _U_; if (!header->exception_id) @@ -230,9 +218,7 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr } - return FALSE; /* user exception not found */ - } /* @@ -241,69 +227,46 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr static void decode_CosNaming_NamingContext_bind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_bind_n; guint32 i_CosNaming_NamingContext_bind_n; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_CosNaming_NamingContext_bind_n = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_bind_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_bind_n); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_bind_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_bind_n); for (i_CosNaming_NamingContext_bind_n=0; i_CosNaming_NamingContext_bind_n < u_octet4_loop_CosNaming_NamingContext_bind_n; i_CosNaming_NamingContext_bind_n++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -312,69 +275,46 @@ decode_CosNaming_NamingContext_bind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p static void decode_CosNaming_NamingContext_rebind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_rebind_n; guint32 i_CosNaming_NamingContext_rebind_n; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_CosNaming_NamingContext_rebind_n = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_rebind_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_rebind_n); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_rebind_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_rebind_n); for (i_CosNaming_NamingContext_rebind_n=0; i_CosNaming_NamingContext_rebind_n < u_octet4_loop_CosNaming_NamingContext_rebind_n; i_CosNaming_NamingContext_rebind_n++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -383,69 +323,46 @@ decode_CosNaming_NamingContext_rebind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_CosNaming_NamingContext_bind_context(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_bind_context_n; guint32 i_CosNaming_NamingContext_bind_context_n; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_CosNaming_NamingContext_bind_context_n = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_bind_context_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_bind_context_n); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_bind_context_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_bind_context_n); for (i_CosNaming_NamingContext_bind_context_n=0; i_CosNaming_NamingContext_bind_context_n < u_octet4_loop_CosNaming_NamingContext_bind_context_n; i_CosNaming_NamingContext_bind_context_n++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -454,69 +371,46 @@ decode_CosNaming_NamingContext_bind_context(tvbuff_t *tvb _U_, packet_info *pinf static void decode_CosNaming_NamingContext_rebind_context(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_rebind_context_n; guint32 i_CosNaming_NamingContext_rebind_context_n; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_CosNaming_NamingContext_rebind_context_n = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_rebind_context_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_rebind_context_n); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_rebind_context_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_rebind_context_n); for (i_CosNaming_NamingContext_rebind_context_n=0; i_CosNaming_NamingContext_rebind_context_n < u_octet4_loop_CosNaming_NamingContext_rebind_context_n; i_CosNaming_NamingContext_rebind_context_n++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -525,67 +419,44 @@ decode_CosNaming_NamingContext_rebind_context(tvbuff_t *tvb _U_, packet_info *pi static void decode_CosNaming_NamingContext_resolve(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_resolve_n; guint32 i_CosNaming_NamingContext_resolve_n; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_CosNaming_NamingContext_resolve_n = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_resolve_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_resolve_n); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_resolve_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_resolve_n); for (i_CosNaming_NamingContext_resolve_n=0; i_CosNaming_NamingContext_resolve_n < u_octet4_loop_CosNaming_NamingContext_resolve_n; i_CosNaming_NamingContext_resolve_n++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -594,66 +465,44 @@ decode_CosNaming_NamingContext_resolve(tvbuff_t *tvb _U_, packet_info *pinfo _U_ static void decode_CosNaming_NamingContext_unbind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_unbind_n; guint32 i_CosNaming_NamingContext_unbind_n; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_CosNaming_NamingContext_unbind_n = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_unbind_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_unbind_n); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_unbind_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_unbind_n); for (i_CosNaming_NamingContext_unbind_n=0; i_CosNaming_NamingContext_unbind_n < u_octet4_loop_CosNaming_NamingContext_unbind_n; i_CosNaming_NamingContext_unbind_n++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -662,52 +511,29 @@ decode_CosNaming_NamingContext_unbind(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_CosNaming_NamingContext_new_context(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -716,67 +542,44 @@ decode_CosNaming_NamingContext_new_context(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_CosNaming_NamingContext_bind_new_context(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_bind_new_context_n; guint32 i_CosNaming_NamingContext_bind_new_context_n; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_CosNaming_NamingContext_bind_new_context_n = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_bind_new_context_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_bind_new_context_n); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_bind_new_context_n, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_bind_new_context_n); for (i_CosNaming_NamingContext_bind_new_context_n=0; i_CosNaming_NamingContext_bind_new_context_n < u_octet4_loop_CosNaming_NamingContext_bind_new_context_n; i_CosNaming_NamingContext_bind_new_context_n++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -785,51 +588,29 @@ decode_CosNaming_NamingContext_bind_new_context(tvbuff_t *tvb _U_, packet_info * static void decode_CosNaming_NamingContext_destroy(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -838,71 +619,48 @@ decode_CosNaming_NamingContext_destroy(tvbuff_t *tvb _U_, packet_info *pinfo _U_ static void decode_CosNaming_NamingContext_list(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_NamingContext_list_bl; guint32 i_CosNaming_NamingContext_list_bl; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_list_how_many, tvb, *offset-4, 4, get_CDR_ulong(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ u_octet4_loop_CosNaming_NamingContext_list_bl = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_NamingContext_list_bl, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_list_bl); + item = proto_tree_add_uint(tree, hf_CosNaming_NamingContext_list_bl, tvb,*offset-4, 4, u_octet4_loop_CosNaming_NamingContext_list_bl); for (i_CosNaming_NamingContext_list_bl=0; i_CosNaming_NamingContext_list_bl < u_octet4_loop_CosNaming_NamingContext_list_bl; i_CosNaming_NamingContext_list_bl++) { /* Begin struct "CosNaming_Binding" */ - decode_CosNaming_Binding_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_Binding_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_Binding" */ } get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -911,54 +669,32 @@ decode_CosNaming_NamingContext_list(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p static void decode_CosNaming_BindingIterator_next_one(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_CosNaming_BindingIterator_next_one_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "CosNaming_Binding" */ - decode_CosNaming_Binding_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_Binding_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_Binding" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -967,68 +703,46 @@ decode_CosNaming_BindingIterator_next_one(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_CosNaming_BindingIterator_next_n(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_CosNaming_BindingIterator_next_n_bl; guint32 i_CosNaming_BindingIterator_next_n_bl; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_CosNaming_BindingIterator_next_n_how_many, tvb, *offset-4, 4, get_CDR_ulong(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_CosNaming_BindingIterator_next_n_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); u_octet4_loop_CosNaming_BindingIterator_next_n_bl = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_BindingIterator_next_n_bl, tvb,*offset-4, 4, u_octet4_loop_CosNaming_BindingIterator_next_n_bl); + item = proto_tree_add_uint(tree, hf_CosNaming_BindingIterator_next_n_bl, tvb,*offset-4, 4, u_octet4_loop_CosNaming_BindingIterator_next_n_bl); for (i_CosNaming_BindingIterator_next_n_bl=0; i_CosNaming_BindingIterator_next_n_bl < u_octet4_loop_CosNaming_BindingIterator_next_n_bl; i_CosNaming_BindingIterator_next_n_bl++) { /* Begin struct "CosNaming_Binding" */ - decode_CosNaming_Binding_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_Binding_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_Binding" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1037,67 +751,45 @@ decode_CosNaming_BindingIterator_next_n(tvbuff_t *tvb _U_, packet_info *pinfo _U static void decode_CosNaming_BindingIterator_destroy(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* Struct = IDL:omg.org/CosNaming/NameComponent:1.0 */ static void -decode_CosNaming_NameComponent_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 _U_) +decode_CosNaming_NameComponent_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "CosNaming_NameComponent_id"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_CosNaming_NameComponent_id); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "CosNaming_NameComponent_kind"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_CosNaming_NameComponent_kind); } /* Struct = IDL:omg.org/CosNaming/Binding:1.0 */ static void -decode_CosNaming_Binding_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 _U_) +decode_CosNaming_Binding_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -1107,18 +799,17 @@ decode_CosNaming_Binding_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tre /* Operation specific Variable declarations End */ u_octet4_loop_CosNaming_Binding_binding_name = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_Binding_binding_name, tvb,*offset-4, 4, u_octet4_loop_CosNaming_Binding_binding_name); + item = proto_tree_add_uint(tree, hf_CosNaming_Binding_binding_name, tvb,*offset-4, 4, u_octet4_loop_CosNaming_Binding_binding_name); for (i_CosNaming_Binding_binding_name=0; i_CosNaming_Binding_binding_name < u_octet4_loop_CosNaming_Binding_binding_name; i_CosNaming_Binding_binding_name++) { /* Begin struct "CosNaming_NameComponent" */ - decode_CosNaming_NameComponent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_CosNaming_NameComponent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "CosNaming_NameComponent" */ } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_CosNaming_Binding_binding_type, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_CosNaming_Binding_binding_type, tvb, *offset-4, 4, u_octet4); } @@ -1157,7 +848,7 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M if(header->message_type == Reply) { /* fill-up info column */ col_append_fstr(pinfo->cinfo, COL_INFO, " op = %s",operation); - }; + } /* fill-up the field */ pi=proto_tree_add_string(ptree, hf_operationrequest, tvb, 0, 0, operation); PROTO_ITEM_SET_GENERATED(pi); @@ -1167,19 +858,13 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M static gboolean dissect_cosnaming(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) { - - gboolean stream_is_big_endian; /* big endianess */ proto_item *item _U_; proto_tree *tree _U_; - - stream_is_big_endian = is_big_endian(header); /* get endianess */ + gboolean stream_is_big_endian = is_big_endian(header); /* get endianess */ /* If we have a USER Exception, then decode it and return */ - if ((header->message_type == Reply) && (header->rep_status == USER_EXCEPTION)) { - return decode_user_exception(tvb, pinfo, ptree, offset, header, operation, stream_is_big_endian); - } switch(header->message_type) { @@ -1291,7 +976,6 @@ dissect_cosnaming(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *off return TRUE; } - break; case CancelRequest: @@ -1313,13 +997,10 @@ dissect_cosnaming(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *off } /* End of main dissector */ - /* Register the protocol with Wireshark */ - -void proto_register_giop_cosnaming(void) { - +void proto_register_giop_cosnaming(void) +{ /* setup list of header fields */ - static hf_register_info hf[] = { /* field that indicates the currently ongoing request/reply exchange */ {&hf_operationrequest, {"Request_Operation","giop-cosnaming.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}}, @@ -1358,36 +1039,22 @@ void proto_register_giop_cosnaming(void) { }; /* Register the protocol name and description */ - proto_cosnaming = proto_register_protocol("Cosnaming Dissector Using GIOP API" , "COSNAMING", "giop-cosnaming" ); - proto_register_field_array(proto_cosnaming, hf, array_length(hf)); - proto_register_subtree_array(ett,array_length(ett)); - } - /* register me as handler for these interfaces */ - -void proto_reg_handoff_giop_cosnaming(void) { - - +void proto_reg_handoff_giop_cosnaming(void) +{ /* Register for Explicit Dissection */ - register_giop_user_module(dissect_cosnaming, "COSNAMING", "CosNaming/BindingIterator", proto_cosnaming ); /* explicit dissector */ - /* Register for Explicit Dissection */ - register_giop_user_module(dissect_cosnaming, "COSNAMING", "CosNaming/NamingContext", proto_cosnaming ); /* explicit dissector */ - /* Register for Heuristic Dissection */ - register_giop_user(dissect_cosnaming, "COSNAMING" ,proto_cosnaming); /* heuristic dissector */ - - } diff --git a/epan/dissectors/packet-giop.c b/epan/dissectors/packet-giop.c index 0ce59ce5fb..f65fee381d 100644 --- a/epan/dissectors/packet-giop.c +++ b/epan/dissectors/packet-giop.c @@ -2135,8 +2135,8 @@ static void set_new_alignment(int *offset, int delta, int alignment) { * and displays it in the relevant tree. */ -static void dissect_data_for_typecode(tvbuff_t *tvb, /* packet_info *pinfo, */ proto_tree *tree, - /* proto_item *item, */ gint *offset, +static void dissect_data_for_typecode(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, + proto_item *item, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header, guint32 data_type ) { @@ -2202,10 +2202,10 @@ static void dissect_data_for_typecode(tvbuff_t *tvb, /* packet_info *pinfo, */ p proto_tree_add_uint(tree, hf_giop_type_octet, tvb, *offset-1, 1, u_octet1); break; case tk_any: - get_CDR_any(tvb,tree,offset,stream_is_big_endian,boundary,header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; case tk_TypeCode: - get_CDR_typeCode(tvb,tree,offset,stream_is_big_endian,boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header); break; case tk_Principal: break; @@ -2276,10 +2276,8 @@ static void dissect_data_for_typecode(tvbuff_t *tvb, /* packet_info *pinfo, */ p case tk_abstract_interface: break; default: -/*************************** expert_add_info_format(pinfo, item, PI_PROTOCOL, PI_WARN, "Unknown typecode data type %u", data_type); -*/ - break; + break; } } @@ -2327,7 +2325,7 @@ static void dissect_tk_objref_params(tvbuff_t *tvb, proto_tree *tree, gint *offs } -static void dissect_tk_struct_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, +static void dissect_tk_struct_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header ) { @@ -2365,14 +2363,14 @@ static void dissect_tk_struct_params(tvbuff_t *tvb, proto_tree *tree, gint *offs hf_giop_typecode_member_name); /* get member type */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary,header); } } -static void dissect_tk_union_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, - gboolean stream_is_big_endian, guint32 boundary, +static void dissect_tk_union_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_item* item, + gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header) { guint32 new_boundary; /* new boundary for encapsulation */ @@ -2385,7 +2383,7 @@ static void dissect_tk_union_params(tvbuff_t *tvb, proto_tree *tree, gint *offse /*guint32 seqlen;*/ /* sequence length */ guint32 i; /* loop index */ - /* get sequence legnth, new endianness and boundary for encapsulation */ + /* get sequence length, new endianness and boundary for encapsulation */ /*seqlen = */get_CDR_encap_info(tvb, tree, offset, stream_is_big_endian, boundary, &new_stream_is_big_endian, &new_boundary); @@ -2399,7 +2397,7 @@ static void dissect_tk_union_params(tvbuff_t *tvb, proto_tree *tree, gint *offse hf_giop_typecode_name); /* get discriminant type */ - TCKind = get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + TCKind = get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary, header); /* get default used */ s_octet4 = get_CDR_long(tvb,offset,new_stream_is_big_endian,new_boundary); @@ -2408,19 +2406,19 @@ static void dissect_tk_union_params(tvbuff_t *tvb, proto_tree *tree, gint *offse /* get count of tuples */ count = get_CDR_ulong(tvb,offset,new_stream_is_big_endian,new_boundary); - proto_tree_add_uint(tree,hf_giop_typecode_count,tvb, *offset-4, 4, count); + proto_tree_add_uint(tree, hf_giop_typecode_count, tvb, *offset-4, 4, count); /* get all tuples */ for (i=0; i< count; i++) { /* get label value, based on TCKind above */ - dissect_data_for_typecode(tvb, tree, offset, new_stream_is_big_endian, new_boundary, header, TCKind ); + dissect_data_for_typecode(tvb, pinfo, tree, item, offset, new_stream_is_big_endian, new_boundary, header, TCKind ); /* get member name */ dissect_typecode_string_param(tvb, tree, offset, new_stream_is_big_endian, new_boundary, hf_giop_typecode_member_name); /* get member type */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary, header); } } @@ -2464,7 +2462,7 @@ static void dissect_tk_enum_params(tvbuff_t *tvb, proto_tree *tree, gint *offset } -static void dissect_tk_sequence_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, +static void dissect_tk_sequence_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header) { @@ -2481,7 +2479,7 @@ static void dissect_tk_sequence_params(tvbuff_t *tvb, proto_tree *tree, gint *of &new_stream_is_big_endian, &new_boundary); /* get element type */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary, header); /* get max length */ u_octet4 = get_CDR_ulong(tvb,offset,stream_is_big_endian,boundary); @@ -2490,7 +2488,7 @@ static void dissect_tk_sequence_params(tvbuff_t *tvb, proto_tree *tree, gint *of } -static void dissect_tk_array_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, +static void dissect_tk_array_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header) { @@ -2507,7 +2505,7 @@ static void dissect_tk_array_params(tvbuff_t *tvb, proto_tree *tree, gint *offse &new_stream_is_big_endian, &new_boundary); /* get element type */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary, header); /* get length */ u_octet4 = get_CDR_ulong(tvb,offset,stream_is_big_endian,boundary); @@ -2516,7 +2514,7 @@ static void dissect_tk_array_params(tvbuff_t *tvb, proto_tree *tree, gint *offse } -static void dissect_tk_alias_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, +static void dissect_tk_alias_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header) { @@ -2539,12 +2537,12 @@ static void dissect_tk_alias_params(tvbuff_t *tvb, proto_tree *tree, gint *offse hf_giop_typecode_name); /* get ??? (noname) TypeCode */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary, header); } -static void dissect_tk_except_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, +static void dissect_tk_except_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header) { @@ -2582,12 +2580,12 @@ static void dissect_tk_except_params(tvbuff_t *tvb, proto_tree *tree, gint *offs hf_giop_typecode_member_name); /* get member type */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary, header); } } -static void dissect_tk_value_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, +static void dissect_tk_value_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header) { @@ -2619,7 +2617,7 @@ static void dissect_tk_value_params(tvbuff_t *tvb, proto_tree *tree, gint *offse *offset-2, 2, s_octet2); /* get conrete base */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary,header); /* get count of tuples */ count = get_CDR_ulong(tvb,offset,new_stream_is_big_endian,new_boundary); @@ -2633,7 +2631,7 @@ static void dissect_tk_value_params(tvbuff_t *tvb, proto_tree *tree, gint *offse hf_giop_typecode_member_name); /* get member type */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary,header); /* get Visibility */ s_octet2 = get_CDR_short(tvb,offset,stream_is_big_endian,boundary); @@ -2646,7 +2644,7 @@ static void dissect_tk_value_params(tvbuff_t *tvb, proto_tree *tree, gint *offse } -static void dissect_tk_value_box_params(tvbuff_t *tvb, proto_tree *tree, gint *offset, +static void dissect_tk_value_box_params(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, guint32 boundary, MessageHeader * header) { @@ -2669,7 +2667,7 @@ static void dissect_tk_value_box_params(tvbuff_t *tvb, proto_tree *tree, gint *o hf_giop_typecode_name); /* get ??? (noname) TypeCode */ - get_CDR_typeCode(tvb,tree,offset,new_stream_is_big_endian,new_boundary,header); + get_CDR_typeCode(tvb, pinfo, tree, offset, new_stream_is_big_endian, new_boundary,header); } @@ -2800,17 +2798,17 @@ guint32 get_CDR_encap_info(tvbuff_t *tvb, proto_tree *tree, gint *offset, * followed by the encoded value. */ -void get_CDR_any(tvbuff_t *tvb, proto_tree *tree, gint *offset, - gboolean stream_is_big_endian, int boundary, +void get_CDR_any(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_item *item, + gint *offset, gboolean stream_is_big_endian, int boundary, MessageHeader * header ) { guint32 TCKind; /* TypeCode */ /* get TypeCode of any */ - TCKind = get_CDR_typeCode(tvb, tree, offset, stream_is_big_endian, boundary, header ); + TCKind = get_CDR_typeCode(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); /* dissect data of type TCKind */ - dissect_data_for_typecode(tvb, tree, offset, stream_is_big_endian, boundary, header, TCKind ); + dissect_data_for_typecode(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header, TCKind ); } @@ -2924,7 +2922,8 @@ guint32 get_CDR_enum(tvbuff_t *tvb, int *offset, gboolean stream_is_big_endian, * or <4,0> ? * */ -void get_CDR_fixed(tvbuff_t *tvb, gchar **seq, gint *offset, guint32 digits, gint32 scale) { +void get_CDR_fixed(tvbuff_t *tvb, packet_info *pinfo, proto_item *item, gchar **seq, + gint *offset, guint32 digits, gint32 scale) { guint8 sign; /* 0x0c is positive, 0x0d is negative */ guint32 i ; /* loop */ @@ -3024,7 +3023,8 @@ void get_CDR_fixed(tvbuff_t *tvb, gchar **seq, gint *offset, guint32 digits, gin (*seq)[sindex] = '-'; break; default: - g_warning("giop: Unknown sign value in fixed type %u \n", sign); + expert_add_info_format(pinfo, item, PI_PROTOCOL, PI_WARN, + "Unknown sign value in fixed type %u", sign); (*seq)[sindex] = '*'; /* flag as sign unknown */ break; } @@ -3257,17 +3257,13 @@ gint16 get_CDR_short(tvbuff_t *tvb, int *offset, gboolean stream_is_big_endian, */ void giop_add_CDR_string(proto_tree *tree, tvbuff_t *tvb, int *offset, - gboolean stream_is_big_endian, int boundary, - const char *varname) + gboolean stream_is_big_endian, int boundary, int hf) { guint32 u_octet4; gchar *seq = NULL; 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,"%s (%u) = %s", - varname, u_octet4, (u_octet4 > 0) ? seq : ""); - } + proto_tree_add_string(tree, hf, tvb, *offset-u_octet4, u_octet4, (u_octet4 > 0) ? seq : ""); } @@ -3330,7 +3326,7 @@ guint32 get_CDR_string(tvbuff_t *tvb, gchar **seq, int *offset, gboolean stream_ * It returns a guint32 representing a TCKind value. */ -guint32 get_CDR_typeCode(tvbuff_t *tvb, /* packet_info* pinfo, */ proto_tree *tree, +guint32 get_CDR_typeCode(tvbuff_t *tvb, packet_info* pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, int boundary, MessageHeader * header ) { guint32 val; @@ -3338,9 +3334,10 @@ guint32 get_CDR_typeCode(tvbuff_t *tvb, /* packet_info* pinfo, */ proto_tree *tr gint16 s_octet2; /* signed int16 */ guint16 u_octet2; /* unsigned int16 */ guint32 u_octet4; /* unsigned int32 */ + proto_item *ti; val = get_CDR_ulong(tvb,offset,stream_is_big_endian,boundary); /* get TCKind enum */ - proto_tree_add_uint(tree,hf_giop_TCKind, tvb, *offset-4, 4, val); + ti = proto_tree_add_uint(tree,hf_giop_TCKind, tvb, *offset-4, 4, val); /* Grab the data according to Typecode Table - Corba Chapter 15 */ @@ -3377,10 +3374,10 @@ guint32 get_CDR_typeCode(tvbuff_t *tvb, /* packet_info* pinfo, */ proto_tree *tr dissect_tk_objref_params(tvb, tree, offset, stream_is_big_endian, boundary); break; case tk_struct: /* complex parameter list */ - dissect_tk_struct_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_struct_params(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); break; case tk_union: /* complex parameter list */ - dissect_tk_union_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_union_params(tvb, pinfo, tree, ti, offset, stream_is_big_endian, boundary, header ); break; case tk_enum: /* complex parameter list */ dissect_tk_enum_params(tvb, tree, offset, stream_is_big_endian, boundary); @@ -3395,16 +3392,16 @@ guint32 get_CDR_typeCode(tvbuff_t *tvb, /* packet_info* pinfo, */ proto_tree *tr break; case tk_sequence: /* complex parameter list */ - dissect_tk_sequence_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_sequence_params(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); break; case tk_array: /* complex parameter list */ - dissect_tk_array_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_array_params(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); break; case tk_alias: /* complex parameter list */ - dissect_tk_alias_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_alias_params(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); break; case tk_except: /* complex parameter list */ - dissect_tk_except_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_except_params(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); break; case tk_longlong: /* empty parameter list */ break; @@ -3437,10 +3434,10 @@ guint32 get_CDR_typeCode(tvbuff_t *tvb, /* packet_info* pinfo, */ proto_tree *tr break; case tk_value: /* complex parameter list */ - dissect_tk_value_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_value_params(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); break; case tk_value_box: /* complex parameter list */ - dissect_tk_value_box_params(tvb, tree, offset, stream_is_big_endian, boundary, header ); + dissect_tk_value_box_params(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header ); break; case tk_native: /* complex parameter list */ dissect_tk_native_params(tvb, tree, offset, stream_is_big_endian, boundary); @@ -3449,9 +3446,7 @@ guint32 get_CDR_typeCode(tvbuff_t *tvb, /* packet_info* pinfo, */ proto_tree *tr dissect_tk_abstract_interface_params(tvb, tree, offset, stream_is_big_endian, boundary ); break; default: -/** XXX - need packet_info, but need to update wireshark_gen.py to support it expert_add_info_format(pinfo, ti, PI_PROTOCOL, PI_WARN, "Unknown TCKind %u", val); -*/ break; } /* val */ @@ -5383,7 +5378,7 @@ proto_register_giop (void) "Whether the GIOP dissector should reassemble messages spanning multiple TCP segments." " To use this option, you must also enable \"Allow subdissectors to reassemble TCP streams\" in the TCP protocol settings.", &giop_desegment); - prefs_register_string_preference(giop_module, "ior_txt", "Stringified IORs", + prefs_register_filename_preference(giop_module, "ior_txt", "Stringified IORs", "File containing stringified IORs, one per line.", &giop_ior_file); /* diff --git a/epan/dissectors/packet-giop.h b/epan/dissectors/packet-giop.h index 5cef181f56..7807ea1eef 100644 --- a/epan/dissectors/packet-giop.h +++ b/epan/dissectors/packet-giop.h @@ -170,8 +170,9 @@ extern void delete_giop_user_module(giop_sub_dissector_t *sub, gchar *name, * Data is added to tree directly if present. */ -extern void get_CDR_any(tvbuff_t *tvb, proto_tree *tree, gint *offset, - gboolean stream_is_big_endian, int boundary, MessageHeader * header ); +extern void get_CDR_any(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, proto_item *item, + gint *offset, gboolean stream_is_big_endian, + int boundary, MessageHeader * header); /* Copy a 1 octet sequence from the tvbuff @@ -257,9 +258,8 @@ extern guint32 get_CDR_enum(tvbuff_t *tvb, int *offset, * */ -extern void get_CDR_fixed(tvbuff_t *tvb, gchar **seq, gint *offset, - guint32 digits, gint32 scale); - +extern void get_CDR_fixed(tvbuff_t *tvb, packet_info *pinfo, proto_item *item, + gchar **seq, gint *offset, guint32 digits, gint32 scale); /* @@ -376,7 +376,7 @@ extern gint16 get_CDR_short(tvbuff_t *tvb, int *offset, extern void giop_add_CDR_string(proto_tree *tree, tvbuff_t *tvb, int *offset, gboolean stream_is_big_endian, int boundary, - const char *varname); + int hf); /* Copy an octet sequence from the tvbuff * which represents a string, and convert @@ -411,7 +411,7 @@ extern guint32 get_CDR_string(tvbuff_t *tvb, gchar **seq, int *offset, * It returns a guint32 representing a TCKind value. */ -extern guint32 get_CDR_typeCode(tvbuff_t *tvb, proto_tree *tree, gint *offset, +extern guint32 get_CDR_typeCode(tvbuff_t *tvb, packet_info* pinfo, proto_tree *tree, gint *offset, gboolean stream_is_big_endian, int boundary, MessageHeader * header ); /* Copy a 4 octet sequence from the tvbuff diff --git a/epan/dissectors/packet-parlay.c b/epan/dissectors/packet-parlay.c index afd8330db8..92c0b6dc90 100644 --- a/epan/dissectors/packet-parlay.c +++ b/epan/dissectors/packet-parlay.c @@ -49,6 +49,14 @@ #endif +/* Initialise the protocol and subtree pointers */ +static int proto_parlay = -1; +static gint ett_parlay = -1; + + +/* Initialise the initial Alignment */ +static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ + static int hf_operationrequest = -1;/* Request_Operation field */ /* Operation filters */ @@ -3380,937 +3388,703 @@ static int hf_org_csapi_mmm_TpMessagingEventInfo_EventNewMessageArrived = -1; static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset); - /* 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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpAddress_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpAddressRange_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpCAIElements_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpChargeAdviceInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpChargePerTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpAoCInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpTimeInterval_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpStructuredAttributeValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_TpAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpFaultStats_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpFaultStatsRecord_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpLoadPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpLoadStatisticData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpLoadThreshold_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpLoadInitVal_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpSag_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpService_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceTypeProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceContract_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceProfile_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpAuthDomain_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpSagProfilePair_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_fw_TpFwAgreementInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIRecognitionProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUICollectCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIWordOverride_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallServiceCode_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallNotificationScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallNotificationReportScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallEventRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallNotificationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCarrier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_TpCallLegProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpMediaStream_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpResourceReservation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUIIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_ui_TpUICallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpLocationResponseTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpLocationTrigger_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpGeographicalPosition_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserLocation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserLocationExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpLocationTriggerCamel_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserStatus_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_termcap_TpTerminalCapabilities_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpChargePerVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_gms_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagString_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagInt_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagDir_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpEndpoint_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpDsCodepoint_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cm_TpIPSubnet_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpChargingEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpBalance_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpTransactionHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpChargingEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpBalanceExpiryDate_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_am_TpVoucher_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpMerchantAccountID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpCorrelationID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpAmount_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpChargingPrice_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpChargingSessionID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpPriceVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_cs_TpChargingParameter_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_policy_TpPolicyNameValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_policy_TpPolicyVar_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_policy_TpPolicyConditionListElement_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_policy_TpPolicyActionListElement_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAttributeDef_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMCommunicationContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAANotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAUNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_pam_TpPAMErrorInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpListMessagesCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpBodyPart_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpGenericHeaderField_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpQueryStatusReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _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_, gboolean stream_is_big_endian _U_); - +static void decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct prototype declaration End */ @@ -4516,21 +4290,6 @@ static void decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, 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_, gboolean stream_is_big_endian _U_); /* Union prototype declaration End */ - -/* Initialise the protocol and subtree pointers */ -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 Enums Start */ @@ -6301,8 +6060,9 @@ static const value_string org_csapi_mmm_TpMessagingError[] = { 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_ASSIGNMENT_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_ASSIGNMENT_ID_ExtraInformation); } @@ -6310,8 +6070,9 @@ decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation); } @@ -6319,8 +6080,9 @@ decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_, packet_inf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_EVENT_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_EVENT_TYPE_ExtraInformation); } @@ -6328,8 +6090,9 @@ decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_INTERFACE_NAME_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_INTERFACE_NAME_ExtraInformation); } @@ -6337,8 +6100,9 @@ decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_INTERFACE_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_INTERFACE_TYPE_ExtraInformation); } @@ -6346,8 +6110,9 @@ decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_UNKNOWN_SUBSCRIBER_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_UNKNOWN_SUBSCRIBER_ExtraInformation); } @@ -6355,8 +6120,9 @@ decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INFORMATION_NOT_AVAILABLE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INFORMATION_NOT_AVAILABLE_ExtraInformation); } @@ -6364,8 +6130,9 @@ decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_CRITERIA_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_CRITERIA_ExtraInformation); } @@ -6373,8 +6140,9 @@ decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_SESSION_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_SESSION_ID_ExtraInformation); } @@ -6382,10 +6150,11 @@ decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; proto_tree_add_uint(tree, hf_org_csapi_TpCommonExceptions_ExceptionType, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpCommonExceptions_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpCommonExceptions_ExtraInformation); } @@ -6393,8 +6162,9 @@ decode_ex_org_csapi_TpCommonExceptions(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_CURRENCY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_CURRENCY_ExtraInformation); } @@ -6402,8 +6172,9 @@ decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_AMOUNT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_AMOUNT_ExtraInformation); } @@ -6411,8 +6182,9 @@ decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_APPLICATION_NOT_ACTIVATED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_APPLICATION_NOT_ACTIVATED_ExtraInformation); } @@ -6420,8 +6192,9 @@ decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_ADDRESS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_ADDRESS_ExtraInformation); } @@ -6429,8 +6202,9 @@ decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation); } @@ -6438,8 +6212,9 @@ decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation); } @@ -6447,8 +6222,9 @@ decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_, packet_inf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_VERSION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_VERSION_ExtraInformation); } @@ -6456,8 +6232,9 @@ decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_P_INVALID_NETWORK_STATE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_P_INVALID_NETWORK_STATE_ExtraInformation); } @@ -6465,8 +6242,9 @@ decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SERVICE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SERVICE_ID_ExtraInformation); } @@ -6474,8 +6252,9 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_SERVICE_ACCESS_DENIED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_SERVICE_ACCESS_DENIED_ExtraInformation); } @@ -6483,8 +6262,9 @@ decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_ACCESS_DENIED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_ACCESS_DENIED_ExtraInformation); } @@ -6492,8 +6272,9 @@ decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_SERVICE_NOT_ENABLED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_SERVICE_NOT_ENABLED_ExtraInformation); } @@ -6501,8 +6282,9 @@ decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation); } @@ -6510,8 +6292,9 @@ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvbuff_t *tvb _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_AGREEMENT_TEXT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_AGREEMENT_TEXT_ExtraInformation); } @@ -6519,8 +6302,9 @@ decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SERVICE_TOKEN_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SERVICE_TOKEN_ExtraInformation); } @@ -6528,8 +6312,9 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SIGNATURE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SIGNATURE_ExtraInformation); } @@ -6537,8 +6322,9 @@ decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SIGNING_ALGORITHM_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM_ExtraInformation); } @@ -6546,8 +6332,9 @@ decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, packet_inf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_DOMAIN_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_DOMAIN_ID_ExtraInformation); } @@ -6555,8 +6342,9 @@ decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_PROPERTY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_PROPERTY_ExtraInformation); } @@ -6564,8 +6352,9 @@ decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_ACCESS_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_ACCESS_TYPE_ExtraInformation); } @@ -6573,8 +6362,9 @@ decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_ILLEGAL_SERVICE_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE_ExtraInformation); } @@ -6582,8 +6372,9 @@ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_UNKNOWN_SERVICE_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE_ExtraInformation); } @@ -6591,8 +6382,9 @@ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_MISSING_MANDATORY_PROPERTY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY_ExtraInformation); } @@ -6600,8 +6392,9 @@ decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_DUPLICATE_PROPERTY_NAME_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME_ExtraInformation); } @@ -6609,8 +6402,9 @@ decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_PROPERTY_TYPE_MISMATCH_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH_ExtraInformation); } @@ -6618,8 +6412,9 @@ decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_CLIENT_APP_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_CLIENT_APP_ID_ExtraInformation); } @@ -6627,8 +6422,9 @@ decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_AUTH_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_AUTH_TYPE_ExtraInformation); } @@ -6636,8 +6432,9 @@ decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SAG_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SAG_ID_ExtraInformation); } @@ -6645,8 +6442,9 @@ decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID_ExtraInformation); } @@ -6654,8 +6452,9 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation); } @@ -6663,8 +6462,9 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvbuff_t *tvb _U_, packet_i 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID_ExtraInformation); } @@ -6672,8 +6472,9 @@ decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_ILLEGAL_SERVICE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_ILLEGAL_SERVICE_ID_ExtraInformation); } @@ -6681,8 +6482,9 @@ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_UNKNOWN_SERVICE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_UNKNOWN_SERVICE_ID_ExtraInformation); } @@ -6690,8 +6492,9 @@ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation); } @@ -6699,8 +6502,9 @@ decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_ADDITION_TO_SAG_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_ADDITION_TO_SAG_ExtraInformation); } @@ -6708,8 +6512,9 @@ decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation); } @@ -6717,8 +6522,9 @@ decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvbuff_t *tvb 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation); } @@ -6726,8 +6532,9 @@ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvbuff_t *tvb _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation); } @@ -6735,8 +6542,9 @@ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, pack 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_P_ID_NOT_FOUND_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_P_ID_NOT_FOUND_ExtraInformation); } @@ -6744,8 +6552,9 @@ decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_P_ILLEGAL_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_P_ILLEGAL_ID_ExtraInformation); } @@ -6753,8 +6562,9 @@ decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_P_ILLEGAL_RANGE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_P_ILLEGAL_RANGE_ExtraInformation); } @@ -6762,8 +6572,9 @@ decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_P_INVALID_COLLECTION_CRITERIA_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA_ExtraInformation); } @@ -6771,8 +6582,9 @@ decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _U_, packet_i 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation); } @@ -6780,8 +6592,9 @@ decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbuff_t *tvb _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation); } @@ -6789,8 +6602,9 @@ decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED(tvbuff_t *t 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_P_INVALID_REPORTING_INTERVAL_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_P_INVALID_REPORTING_INTERVAL_ExtraInformation); } @@ -6798,8 +6612,9 @@ decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation); } @@ -6807,8 +6622,9 @@ decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t *tvb _U_, pa 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_termcap_P_INVALID_TERMINAL_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_termcap_P_INVALID_TERMINAL_ID_ExtraInformation); } @@ -6816,8 +6632,9 @@ decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_INVALID_FOLDER_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_INVALID_FOLDER_ID_ExtraInformation); } @@ -6825,8 +6642,9 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation); } @@ -6834,8 +6652,9 @@ decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _U_, packet_i 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation); } @@ -6843,8 +6662,9 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_INVALID_MAILBOX_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_INVALID_MAILBOX_ExtraInformation); } @@ -6852,8 +6672,9 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_INVALID_MESSAGE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID_ExtraInformation); } @@ -6861,8 +6682,9 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation); } @@ -6870,8 +6692,9 @@ decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_i 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation); } @@ -6879,8 +6702,9 @@ decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation); } @@ -6888,8 +6712,9 @@ decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation); } @@ -6897,8 +6722,9 @@ decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *tvb _U_, pack 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_MAILBOX_LOCKED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_MAILBOX_LOCKED_ExtraInformation); } @@ -6906,8 +6732,9 @@ decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation); } @@ -6915,8 +6742,9 @@ decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_PROPERTY_NOT_SET_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_PROPERTY_NOT_SET_ExtraInformation); } @@ -6924,8 +6752,9 @@ decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_FOLDER_IS_OPEN_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_FOLDER_IS_OPEN_ExtraInformation); } @@ -6933,8 +6762,9 @@ decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_P_GMS_MAILBOX_OPEN_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_P_GMS_MAILBOX_OPEN_ExtraInformation); } @@ -6942,8 +6772,9 @@ decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_VPRP_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_VPRP_ID_ExtraInformation); } @@ -6951,8 +6782,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_SLA_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_SLA_ID_ExtraInformation); } @@ -6960,8 +6792,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_STATUS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_STATUS_ExtraInformation); } @@ -6969,8 +6802,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_QOS_INFO_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_QOS_INFO_ExtraInformation); } @@ -6978,8 +6812,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_VALIDITY_INFO_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO_ExtraInformation); } @@ -6987,8 +6822,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_PIPEQOSINFO_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO_ExtraInformation); } @@ -6996,8 +6832,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_DSCODEPOINT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_DSCODEPOINT_ExtraInformation); } @@ -7005,8 +6842,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_ILLEGAL_VPRPID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_ILLEGAL_VPRPID_ExtraInformation); } @@ -7014,8 +6852,9 @@ decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_ILLEGAL_REF_VALUE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_ILLEGAL_REF_VALUE_ExtraInformation); } @@ -7023,8 +6862,9 @@ decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_INTERFACE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_INTERFACE_ExtraInformation); } @@ -7032,8 +6872,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_CANT_DELETE_VPRP_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_CANT_DELETE_VPRP_ExtraInformation); } @@ -7041,8 +6882,9 @@ decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_TEMPLATES_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_TEMPLATES_ExtraInformation); } @@ -7050,8 +6892,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_MENU_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_MENU_ExtraInformation); } @@ -7059,8 +6902,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation); } @@ -7068,8 +6912,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation); } @@ -7077,8 +6922,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_DESCRIPTION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_DESCRIPTION_ExtraInformation); } @@ -7086,8 +6932,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_ILLEGAL_SLA_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_ILLEGAL_SLA_ID_ExtraInformation); } @@ -7095,8 +6942,9 @@ decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_ILLEGAL_TAG_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_ILLEGAL_TAG_ExtraInformation); } @@ -7104,8 +6952,9 @@ decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_ILLEGAL_VALUE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_ILLEGAL_VALUE_ExtraInformation); } @@ -7113,8 +6962,9 @@ decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_ILLEGAL_COMBINATION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_ILLEGAL_COMBINATION_ExtraInformation); } @@ -7122,8 +6972,9 @@ decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_SITES_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_SITES_ExtraInformation); } @@ -7131,8 +6982,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_VPRN_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_VPRN_ExtraInformation); } @@ -7140,8 +6992,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_ILLEGAL_SITE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_ILLEGAL_SITE_ID_ExtraInformation); } @@ -7149,8 +7002,9 @@ decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_SITE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_SITE_ID_ExtraInformation); } @@ -7158,8 +7012,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_SAPS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_SAPS_ExtraInformation); } @@ -7167,8 +7022,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_SITE_LOCATION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_SITE_LOCATION_ExtraInformation); } @@ -7176,8 +7032,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation); } @@ -7185,8 +7042,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_IPSUBNET_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_IPSUBNET_ExtraInformation); } @@ -7194,8 +7052,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_SAP_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_SAP_ExtraInformation); } @@ -7203,8 +7062,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_P_UNKNOWN_VPRP_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_P_UNKNOWN_VPRP_ExtraInformation); } @@ -7212,8 +7072,9 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_am_P_UNAUTHORIZED_APPLICATION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_am_P_UNAUTHORIZED_APPLICATION_ExtraInformation); } @@ -7221,8 +7082,9 @@ decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_P_INVALID_USER_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_P_INVALID_USER_ExtraInformation); } @@ -7230,8 +7092,9 @@ decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_P_INVALID_ACCOUNT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_P_INVALID_ACCOUNT_ExtraInformation); } @@ -7239,8 +7102,9 @@ decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_P_INVALID_REQUEST_NUMBER_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_P_INVALID_REQUEST_NUMBER_ExtraInformation); } @@ -7248,8 +7112,9 @@ decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_P_INVALID_VOLUME_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_P_INVALID_VOLUME_ExtraInformation); } @@ -7257,8 +7122,9 @@ decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_P_ACCESS_VIOLATION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_P_ACCESS_VIOLATION_ExtraInformation); } @@ -7266,8 +7132,9 @@ decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_P_SYNTAX_ERROR_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_P_SYNTAX_ERROR_ExtraInformation); } @@ -7275,8 +7142,9 @@ decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_P_NAME_SPACE_ERROR_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_P_NAME_SPACE_ERROR_ExtraInformation); } @@ -7284,8 +7152,9 @@ decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS_ExtraInformation); } @@ -7293,8 +7162,9 @@ decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_P_TRANSACTION_IN_PROCESS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_P_TRANSACTION_IN_PROCESS_ExtraInformation); } @@ -7302,8 +7172,9 @@ decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_TYPE_ExtraInformation); } @@ -7311,8 +7182,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_MEMBER_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_MEMBER_ExtraInformation); } @@ -7320,8 +7192,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_IDENTITY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY_ExtraInformation); } @@ -7329,8 +7202,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_GROUP_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_GROUP_ExtraInformation); } @@ -7338,8 +7212,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY_ExtraInformation); } @@ -7347,8 +7222,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation); } @@ -7356,8 +7232,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation); } @@ -7365,8 +7242,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation); } @@ -7374,8 +7252,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_ALIAS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_ALIAS_ExtraInformation); } @@ -7383,8 +7262,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNKNOWN_AGENT_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNKNOWN_AGENT_ExtraInformation); } @@ -7392,8 +7272,9 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNASSIGNED_ALIAS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS_ExtraInformation); } @@ -7401,8 +7282,9 @@ decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_TYPE_EXISTS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_TYPE_EXISTS_ExtraInformation); } @@ -7410,8 +7292,9 @@ decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_TYPE_ASSOCIATED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_TYPE_ASSOCIATED_ExtraInformation); } @@ -7419,8 +7302,9 @@ decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_NOT_REGISTERED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_NOT_REGISTERED_ExtraInformation); } @@ -7428,8 +7312,9 @@ decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, packet_info *pin 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_NOT_MEMBER_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_NOT_MEMBER_ExtraInformation); } @@ -7437,8 +7322,9 @@ decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_NO_CAPABILITY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_NO_CAPABILITY_ExtraInformation); } @@ -7446,8 +7332,9 @@ decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_MEMBER_EXISTS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_MEMBER_EXISTS_ExtraInformation); } @@ -7455,8 +7342,9 @@ decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_IS_CYCLIC_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_IS_CYCLIC_ExtraInformation); } @@ -7464,8 +7352,9 @@ decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_info *pinfo _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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_IDENTITY_EXISTS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_IDENTITY_EXISTS_ExtraInformation); } @@ -7473,8 +7362,9 @@ decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_DISASSOCIATED_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE_ExtraInformation); } @@ -7482,8 +7372,9 @@ decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS_ExtraInformation); } @@ -7491,8 +7382,9 @@ decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation); } @@ -7500,8 +7392,9 @@ decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_ALIAS_EXISTS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_ALIAS_EXISTS_ExtraInformation); } @@ -7509,8 +7402,9 @@ decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_AGENT_EXISTS_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_AGENT_EXISTS_ExtraInformation); } @@ -7518,8 +7412,9 @@ decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation); } @@ -7527,8 +7422,9 @@ decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_P_PAM_INVALID_CREDENTIAL_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_P_PAM_INVALID_CREDENTIAL_ExtraInformation); } @@ -7536,8 +7432,9 @@ decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation); } @@ -7545,8 +7442,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _ 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_MAILBOX_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_MAILBOX_ExtraInformation); } @@ -7554,8 +7452,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation); } @@ -7563,8 +7462,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation); } @@ -7572,8 +7472,9 @@ decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packe 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_FOLDER_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID_ExtraInformation); } @@ -7581,8 +7482,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info * 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID_ExtraInformation); } @@ -7590,8 +7492,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_PART_ID_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_PART_ID_ExtraInformation); } @@ -7599,8 +7502,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, packet_info *pi 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation); } @@ -7608,8 +7512,9 @@ decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tvbuff_t *tvb 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation); } @@ -7617,8 +7522,9 @@ decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tvbuff_t *tvb 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_PROPERTY_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_PROPERTY_ExtraInformation); } @@ -7626,8 +7532,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *p 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME_ExtraInformation); } @@ -7635,8 +7542,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME_ExtraInformation); } @@ -7644,8 +7552,9 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U_, packet_in 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation); } @@ -7653,8 +7562,9 @@ decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packe 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation); } @@ -7662,8 +7572,9 @@ decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packe 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_CANNOT_CANCEL_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_CANNOT_CANCEL_ExtraInformation); } @@ -7671,8 +7582,9 @@ decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packet_info *pinf 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 _U_) { + proto_item *item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_P_MMM_INVALID_HEADER_ExtraInformation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_P_MMM_INVALID_HEADER_ExtraInformation); } @@ -7686,7 +7598,6 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, packet_info *pin static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - proto_tree *tree _U_; if (!header->exception_id) @@ -8611,9 +8522,7 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr } - return FALSE; /* user exception not found */ - } /* @@ -8622,54 +8531,31 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr static void decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -8678,56 +8564,33 @@ decode_org_csapi_IpService_setCallback(tvbuff_t *tvb _U_, packet_info *pinfo _U_ static void decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_IpService_setCallbackWithSessionID_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -8736,57 +8599,35 @@ decode_org_csapi_IpService_setCallbackWithSessionID(tvbuff_t *tvb _U_, packet_in 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpAuthDomain" */ - decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpAuthDomain" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthentication_authType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthentication_authType); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpAuthDomain" */ - decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpAuthDomain" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -8795,59 +8636,37 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticatio 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpAuthDomain" */ - decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpAuthDomain" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion_authType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion_authType); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion_frameworkVersion"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticationWithVersion_frameworkVersion); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpAuthDomain" */ - decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpAuthDomain_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpAuthDomain" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -8856,57 +8675,33 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpInitial_initiateAuthenticatio 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess_accessType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess_accessType); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -8915,23 +8710,19 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAuthentication_requestAccess( 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_terminationText); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_terminationText"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_signingAlgorithm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_signingAlgorithm); u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature); for (i_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature=0; i_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature; i_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess_digitalSignature++) { @@ -8940,44 +8731,26 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess( } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -8986,54 +8759,31 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAccess_terminateAccess( 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface_interfaceName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface_interfaceName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9042,57 +8792,33 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterface(tvbuff 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCallback_interfaceName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCallback_interfaceName); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9101,66 +8827,44 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_obtainInterfaceWithCal 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties); for (i_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties=0; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess_endAccessProperties++) { /* Begin struct "org_csapi_fw_TpProperty" */ - decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpProperty" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9169,63 +8873,41 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_endAccess(tvbuff_t *tv 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return); for (i_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return=0; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9234,53 +8916,31 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_listInterfaces(tvbuff_ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface_interfaceName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface_interfaceName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9289,53 +8949,31 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_releaseInterface(tvbuf 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm_signingAlgorithmCaps"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm_signingAlgorithmCaps); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9344,21 +8982,17 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_selectSigningAlgorithm 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_terminationText"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_terminationText); u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature); for (i_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature=0; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess_digitalSignature++) { @@ -9367,44 +9001,26 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9413,23 +9029,19 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_terminateAccess(tvbuff 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_interfaceName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_interfaceName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_terminationText"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_terminationText); u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature); for (i_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature=0; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature; i_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface_digitalSignature++) { @@ -9438,44 +9050,26 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9484,7 +9078,6 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAccess_relinquishInterface(tv 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge; @@ -9492,13 +9085,10 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ guint32 i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge); for (i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge=0; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_challenge++) { @@ -9507,15 +9097,11 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return); for (i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return=0; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_authenticate_return++) { @@ -9524,34 +9110,20 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9560,51 +9132,29 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9613,51 +9163,29 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9666,7 +9194,6 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge; @@ -9674,13 +9201,10 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ guint32 i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge); for (i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge=0; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_challenge++) { @@ -9689,15 +9213,11 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return); for (i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return=0; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return; i_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_challenge_return++) { @@ -9706,34 +9226,20 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9742,53 +9248,31 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpClientAPILevelAuthentication_ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod_encryptionCaps"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod_encryptionCaps); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectEncryptionMethod_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9797,7 +9281,6 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_select 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge; @@ -9805,13 +9288,10 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge); for (i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge=0; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_challenge++) { @@ -9820,15 +9300,11 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return); for (i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return=0; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authenticate_return++) { @@ -9837,34 +9313,20 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9873,51 +9335,29 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9926,51 +9366,29 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_abortA 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -9979,53 +9397,31 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_authen 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism_authMechanismList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism_authMechanismList); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_selectAuthenticationMechanism_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10034,7 +9430,6 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_select 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge; guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge; @@ -10042,13 +9437,10 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challe guint32 i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge); for (i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge=0; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_challenge++) { @@ -10057,15 +9449,11 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challe } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return); for (i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return=0; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return < u_octet4_loop_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return; i_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challenge_return++) { @@ -10074,34 +9462,20 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challe } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10110,12 +9484,8 @@ decode_org_csapi_fw_fw_access_trust_and_security_IpAPILevelAuthentication_challe static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin union "org_csapi_fw_TpFwEventInfo" */ decode_org_csapi_fw_TpFwEventInfo_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); @@ -10124,44 +9494,26 @@ decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNot proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10170,51 +9522,29 @@ decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_reportNot static void decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_notificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10223,56 +9553,34 @@ decode_org_csapi_fw_fw_application_notification_IpAppEventNotification_notificat static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin union "org_csapi_fw_TpFwEventCriteria" */ decode_org_csapi_fw_TpFwEventCriteria_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_fw_TpFwEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_notification_IpEventNotification_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10281,53 +9589,31 @@ decode_org_csapi_fw_fw_application_notification_IpEventNotification_createNotifi static void decode_org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10336,55 +9622,33 @@ decode_org_csapi_fw_fw_application_notification_IpEventNotification_destroyNotif static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes_activityTestResult"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes_activityTestResult); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10393,53 +9657,31 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestRes(t static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestReq_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10448,59 +9690,36 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appActivityTestRe static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10509,59 +9728,36 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultReportInd( static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryInd_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryInd_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10570,61 +9766,38 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwFaultRecoveryIn static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd_serviceID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd_serviceID"); - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10633,68 +9806,46 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcUnavailableInd static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordRes_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10703,59 +9854,36 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10764,53 +9892,31 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwUnavailableInd( static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10819,70 +9925,47 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_activityTestErr(t static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordErr_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10891,53 +9974,31 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd_serviceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -10946,54 +10007,32 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_appUnavailableInd static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11002,61 +10041,38 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_genFaultStatsReco static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd_serviceID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd_serviceID"); - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11065,70 +10081,48 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_svcAvailStatusInd static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordRes_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11137,7 +10131,6 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics; guint32 i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics; @@ -11146,72 +10139,50 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat guint32 i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics); for (i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics=0; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics++) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_faultStatistics, tvb, *offset-4, 4, u_octet4); } u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordErr_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11220,56 +10191,34 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStatisticsRecordReq_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11278,59 +10227,36 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_generateFaultStat static void decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11339,54 +10265,32 @@ decode_org_csapi_fw_fw_application_integrity_IpAppFaultManager_fwAvailStatusInd( static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11395,66 +10299,44 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadReq(tv static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics; guint32 i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics); for (i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics=0; i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics; i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11463,59 +10345,36 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadRes(tvbuf static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11524,66 +10383,44 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadErr(tvbuf static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics; guint32 i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics); for (i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics=0; i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics; i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotification_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11592,51 +10429,29 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_loadLevelNotificat static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11645,51 +10460,29 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_resumeNotification static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11698,51 +10491,29 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_suspendNotificatio static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11751,51 +10522,29 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_createLoadLevelNot static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11804,56 +10553,34 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_destroyLoadLevelNo static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsReq_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11862,68 +10589,46 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryAppLoadStatsR static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics; guint32 i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics); for (i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics=0; i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics; i_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11932,61 +10637,38 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsRes( static void decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -11995,59 +10677,36 @@ decode_org_csapi_fw_fw_application_integrity_IpAppLoadManager_queryLoadStatsErr( static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad_loadLevel, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad_loadLevel, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12056,68 +10715,46 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_reportLoad(tvbuff_t * static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq_serviceIDs); } /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12126,66 +10763,44 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadReq(tvbuff_t static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12194,59 +10809,36 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadRes(tvbuf static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12255,65 +10847,43 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadErr(tvbuf static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotification_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12322,65 +10892,43 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_createLoadLevelNotifi static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotification_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12389,65 +10937,43 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_destroyLoadLevelNotif static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12456,65 +10982,43 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_resumeNotification(tv static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12523,70 +11027,48 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_suspendNotification(t static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq_serviceIDs); } /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12595,68 +11077,46 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryLoadStatsReq(tvb static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics; guint32 i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics); for (i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics=0; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics; i_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12665,61 +11125,38 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsRes( static void decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12728,53 +11165,31 @@ decode_org_csapi_fw_fw_application_integrity_IpLoadManager_queryAppLoadStatsErr( static void decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery_systemDateAndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery_systemDateAndTime); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12783,53 +11198,31 @@ decode_org_csapi_fw_fw_application_integrity_IpAppOAM_systemDateTimeQuery(tvbuff static void decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery_clientDateAndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery_clientDateAndTime); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12838,55 +11231,33 @@ decode_org_csapi_fw_fw_application_integrity_IpOAM_systemDateTimeQuery(tvbuff_t static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq_svcID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq_svcID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12895,55 +11266,33 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_activityTestReq(tvbu static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes_activityTestResult"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes_activityTestResult); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -12952,53 +11301,31 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestRes(t static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd_serviceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13007,68 +11334,46 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_svcUnavailableInd(tv static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordReq_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13077,53 +11382,31 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordR static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13132,53 +11415,31 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appActivityTestErr(t static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd_serviceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13187,54 +11448,32 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appUnavailableInd(tv static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13243,59 +11482,36 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordR static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13304,59 +11520,36 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_genFaultStatsRecordE static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13365,70 +11558,48 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_appAvailStatusInd(tv static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs; guint32 i_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs); for (i_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs=0; i_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs < u_octet4_loop_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs; i_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordReq_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13437,56 +11608,34 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordRes_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13495,61 +11644,38 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist static void decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatisticsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13558,56 +11684,33 @@ decode_org_csapi_fw_fw_application_integrity_IpFaultManager_generateFaultStatist static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13616,51 +11719,29 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_enableHeartBeat(tvb static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13669,53 +11750,31 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_disableHeartBeat(tv static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13724,51 +11783,29 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeatMgmt_changeInterval(tvbu static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13777,51 +11814,29 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeat_pulse(tvbuff_t *tvb static void decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13830,56 +11845,33 @@ decode_org_csapi_fw_fw_application_integrity_IpHeartBeat_pulse(tvbuff_t *tvb _U_ static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBeat_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13888,51 +11880,29 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_enableAppHeartBe static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13941,53 +11911,31 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_disableAppHeartB static void decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -13996,63 +11944,41 @@ decode_org_csapi_fw_fw_application_integrity_IpAppHeartBeatMgmt_changeInterval(t static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return; guint32 i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return); for (i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return=0; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return < u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14061,54 +11987,32 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listServiceTypes static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceType_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceType_name); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpServiceTypeDescription" */ - decode_org_csapi_fw_TpServiceTypeDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceTypeDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceTypeDescription" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14117,7 +12021,6 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_describeServiceT static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList; guint32 i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList; @@ -14125,72 +12028,51 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService( guint32 i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_serviceTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_serviceTypeName); u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList); for (i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList=0; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList < u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_desiredPropertyList++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_max, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return); for (i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return=0; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return < u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService_return++) { /* Begin struct "org_csapi_fw_TpService" */ - decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpService" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14199,64 +12081,42 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_discoverService( static void decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return; guint32 i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return); for (i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return=0; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return < u_octet4_loop_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return; i_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedServices_return++) { /* Begin struct "org_csapi_fw_TpService" */ - decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpService" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14265,33 +12125,25 @@ decode_org_csapi_fw_fw_application_discovery_IpServiceDiscovery_listSubscribedSe static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return; guint32 i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_serviceToken); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_serviceToken"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_agreementText); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_agreementText"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_signingAlgorithm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_signingAlgorithm); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return); for (i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return=0; i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return < u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return; i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_signServiceAgreement_return++) { @@ -14300,34 +12152,20 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14336,23 +12174,19 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage static void decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature; guint32 i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_serviceToken); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_serviceToken"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_terminationText"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_terminationText); u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature); for (i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature=0; i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature < u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature; i_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManagement_terminateServiceAgreement_digitalSignature++) { @@ -14361,44 +12195,26 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14407,58 +12223,36 @@ decode_org_csapi_fw_fw_application_service_agreement_IpAppServiceAgreementManage static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_serviceToken); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_serviceToken"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_agreementText); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_agreementText"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_signingAlgorithm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_signServiceAgreement_signingAlgorithm); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpSignatureAndServiceMgr" */ - decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpSignatureAndServiceMgr" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14467,23 +12261,19 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature; guint32 i_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_serviceToken); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_serviceToken"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_terminationText"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_terminationText); u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature); for (i_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature=0; i_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature < u_octet4_loop_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature; i_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_terminateServiceAgreement_digitalSignature++) { @@ -14492,44 +12282,26 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14538,53 +12310,31 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService_serviceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_selectService_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14593,53 +12343,31 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen static void decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_initiateSignServiceAgreement(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_initiateSignServiceAgreement_serviceToken"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagement_initiateSignServiceAgreement_serviceToken); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14648,54 +12376,32 @@ decode_org_csapi_fw_fw_application_service_agreement_IpServiceAgreementManagemen 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpServiceProfileDescription" */ - decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProfileDescription" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_createServiceProfile_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_createServiceProfile_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14704,54 +12410,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpServiceProfile" */ - decode_org_csapi_fw_TpServiceProfile_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProfile_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProfile" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14760,53 +12444,31 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deleteServiceProfile_serviceProfileID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deleteServiceProfile_serviceProfileID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14815,55 +12477,33 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign_sagID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign_sagID"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign_serviceProfileID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_assign_serviceProfileID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14872,55 +12512,33 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign_sagID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign_sagID"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign_serviceProfileID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_deassign_serviceProfileID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14929,64 +12547,42 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileManagement_requestConflictInfo_return++) { /* Begin struct "org_csapi_fw_TpAssignSagToServiceProfileConflict" */ - decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpAssignSagToServiceProfileConflict" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -14995,63 +12591,41 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listServiceProfiles_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15060,54 +12634,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_describeServiceProfile_serviceProfileID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_describeServiceProfile_serviceProfileID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpServiceProfileDescription" */ - decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProfileDescription" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15116,65 +12668,43 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_serviceProfileID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_serviceProfileID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfileInfoQuery_listAssignedMembers_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15183,54 +12713,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceProfile 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpServiceContractDescription" */ - decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceContractDescription" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_createServiceContract_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_createServiceContract_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15239,54 +12747,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpServiceContract" */ - decode_org_csapi_fw_TpServiceContract_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceContract_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceContract" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15295,53 +12781,31 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_deleteServiceContract_serviceContractID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractManagement_deleteServiceContract_serviceContractID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15350,54 +12814,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_describeServiceContract_serviceContractID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_describeServiceContract_serviceContractID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpServiceContractDescription" */ - decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceContractDescription" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15406,63 +12848,41 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceContracts_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15471,65 +12891,43 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_serviceContractID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_serviceContractID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContractInfoQuery_listServiceProfiles_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15538,66 +12936,44 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpServiceContrac 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountManagement_modifyEntOpAccount_enterpriseOperatorProperties++) { /* Begin struct "org_csapi_fw_TpProperty" */ - decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpProperty" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15606,51 +12982,29 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountMa 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15659,52 +13013,30 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountMa 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpEntOp" */ - decode_org_csapi_fw_TpEntOp_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpEntOp_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpEntOp" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15713,54 +13045,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpEntOpAccountIn 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpClientAppDescription" */ - decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpClientAppDescription" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15769,54 +13079,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpClientAppDescription" */ - decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpClientAppDescription" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15825,53 +13113,31 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteClientApp_clientAppID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteClientApp_clientAppID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15880,68 +13146,46 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpSag" */ - decode_org_csapi_fw_TpSag_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpSag_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpSag" */ u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_createSAG_clientAppIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -15950,54 +13194,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpSag" */ - decode_org_csapi_fw_TpSag_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpSag_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpSag" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16006,53 +13228,31 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteSAG_sagID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_deleteSAG_sagID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16061,67 +13261,45 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_sagID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_sagID); u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_addSAGMembers_clientAppIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16130,67 +13308,45 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_sagID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_sagID); u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_removeSAGMembers_clientAppIDList); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16199,64 +13355,42 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManagement_requestConflictInfo_return++) { /* Begin struct "org_csapi_fw_TpAddSagMembersConflict" */ - decode_org_csapi_fw_TpAddSagMembersConflict_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpAddSagMembersConflict_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpAddSagMembersConflict" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16265,54 +13399,32 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppManag 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeClientApp_clientAppID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeClientApp_clientAppID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpClientAppDescription" */ - decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpClientAppDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpClientAppDescription" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16321,63 +13433,41 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientApps_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16386,53 +13476,31 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG_sagID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG_sagID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_describeSAG_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16441,63 +13509,41 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGs_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16506,65 +13552,43 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_sagID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_sagID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listSAGMembers_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16573,65 +13597,43 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ 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_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return; guint32 i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_clientAppID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_clientAppID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return); for (i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return=0; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return < u_octet4_loop_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return; i_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQuery_listClientAppMembership_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16640,12 +13642,8 @@ decode_org_csapi_fw_fw_enterprise_operator_service_subscription_IpClientAppInfoQ static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin union "org_csapi_fw_TpFwEventInfo" */ decode_org_csapi_fw_TpFwEventInfo_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); @@ -16654,44 +13652,26 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotificatio proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_reportNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16700,51 +13680,29 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotificatio static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotification_notificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16753,56 +13711,34 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpClientEventNotificatio static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin union "org_csapi_fw_TpFwEventCriteria" */ decode_org_csapi_fw_TpFwEventCriteria_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_fw_TpFwEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16811,53 +13747,31 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_crea static void decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16866,63 +13780,41 @@ decode_org_csapi_fw_fw_enterprise_operator_notification_IpEventNotification_dest static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return; guint32 i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return); for (i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return=0; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return < u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16931,54 +13823,32 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listServiceTypes(t static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceType_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceType_name); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpServiceTypeDescription" */ - decode_org_csapi_fw_TpServiceTypeDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceTypeDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceTypeDescription" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -16987,7 +13857,6 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_describeServiceTyp static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList; guint32 i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList; @@ -16995,72 +13864,51 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService(tv guint32 i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_serviceTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_serviceTypeName); u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList); for (i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList=0; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList < u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_desiredPropertyList++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_max, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return); for (i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return=0; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return < u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService_return++) { /* Begin struct "org_csapi_fw_TpService" */ - decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpService" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17069,64 +13917,42 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_discoverService(tv static void decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return; guint32 i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return); for (i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return=0; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return < u_octet4_loop_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return; i_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServices_return++) { /* Begin struct "org_csapi_fw_TpService" */ - decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpService_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpService" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17135,71 +13961,48 @@ decode_org_csapi_fw_fw_service_discovery_IpFwServiceDiscovery_listRegisteredServ static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties; guint32 i_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_application"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_application); u_octet4_loop_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties); for (i_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties=0; i_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties < u_octet4_loop_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties; i_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceProperties++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceInstanceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_createServiceManager_serviceInstanceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17208,53 +14011,31 @@ decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManag static void decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_destroyServiceManager(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_destroyServiceManager_serviceInstance"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManager_destroyServiceManager_serviceInstance); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17263,68 +14044,46 @@ decode_org_csapi_fw_fw_service_service_lifecycle_IpServiceInstanceLifecycleManag static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList; guint32 i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_serviceTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_serviceTypeName); u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList); for (i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList=0; i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList < u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList; i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_servicePropertyList++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerService_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17333,56 +14092,33 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_regi static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_announceServiceAvailability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_announceServiceAvailability_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_announceServiceAvailability_serviceID); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17391,53 +14127,31 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_anno static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unregisterService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unregisterService_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unregisterService_serviceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17446,54 +14160,32 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unre static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_describeService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_describeService_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_describeService_serviceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_fw_TpServiceDescription" */ - decode_org_csapi_fw_TpServiceDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceDescription" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17502,53 +14194,31 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_desc static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unannounceService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unannounceService_serviceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unannounceService_serviceID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17557,7 +14227,6 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_unan static void decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList; guint32 i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList; @@ -17565,72 +14234,51 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_regi guint32 i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_serviceTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_serviceTypeName); u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList); for (i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList=0; i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList < u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList; i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_servicePropertyList++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList); for (i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList=0; i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList < u_octet4_loop_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList; i_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_extendedServicePropertyList++) { /* Begin struct "org_csapi_fw_TpServiceTypePropertyValue" */ - decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceTypePropertyValue" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_registerServiceSubType_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17639,54 +14287,32 @@ decode_org_csapi_fw_fw_service_service_registration_IpFwServiceRegistration_regi static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17695,66 +14321,44 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadReq(tvbuff static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics; guint32 i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics); for (i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics=0; i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics; i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17763,59 +14367,36 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadRes(tvbuff_t static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17824,66 +14405,44 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadErr(tvbuff_t static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics; guint32 i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics); for (i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics=0; i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics; i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17892,51 +14451,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_loadLevelNotification( static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17945,51 +14482,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_suspendNotification(tv static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -17998,51 +14513,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_resumeNotification(tvb static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18051,51 +14544,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_createLoadLevelNotific static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18104,56 +14575,34 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_destroyLoadLevelNotifi static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18162,68 +14611,46 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_querySvcLoadStatsReq(t static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics; guint32 i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics); for (i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics=0; i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics; i_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18232,61 +14659,38 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsRes(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr_loadStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18295,59 +14699,36 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcLoadManager_queryLoadStatsErr(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad_loadLevel, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad_loadLevel, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18356,62 +14737,39 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_reportLoad(tvbuff_t *tv static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq_querySubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq_querySubject, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18420,66 +14778,44 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadReq(tvbuff_t * static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics; guint32 i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics); for (i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics=0; i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics; i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18488,59 +14824,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadRes(tvbuff_ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr_loadStatisticError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr_loadStatisticError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18549,59 +14862,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadErr(tvbuff_ static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18610,59 +14900,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_createLoadLevelNotifica static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18671,59 +14938,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_destroyLoadLevelNotific static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18732,59 +14976,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_suspendNotification(tvb static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification_notificationSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18793,64 +15014,41 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_resumeNotification(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq_querySubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq_querySubject, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18859,68 +15057,46 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_queryLoadStatsReq(tvbuf static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics; guint32 i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics); for (i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics=0; i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics; i_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes_loadStatistics++) { /* Begin struct "org_csapi_fw_TpLoadStatistic" */ - decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatistic_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpLoadStatistic" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18929,61 +15105,38 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsRes(tv static void decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr_loadStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr_loadStatisticError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr_loadStatisticError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -18992,55 +15145,33 @@ decode_org_csapi_fw_fw_service_integrity_IpFwLoadManager_querySvcLoadStatsErr(tv static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes_activityTestResult"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes_activityTestResult); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19049,53 +15180,31 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestRes(tvbuf static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19104,59 +15213,36 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcActivityTestReq(tv static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19165,59 +15251,36 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultReportInd(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19226,59 +15289,36 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwFaultRecoveryInd(tv static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19287,51 +15327,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwUnavailableInd(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19340,51 +15358,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_svcUnavailableInd(tvb static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19393,62 +15389,39 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appUnavailableInd(tvb static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRes_recordSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRes_recordSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19457,53 +15430,31 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRe static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19512,63 +15463,39 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_activityTestErr(tvbuf static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr_recordSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordErr_recordSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19577,68 +15504,46 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordEr static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs; guint32 i_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs); for (i_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs=0; i_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs; i_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordReq_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19647,54 +15552,32 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_genFaultStatsRecordRe static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19703,59 +15586,36 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatsRec static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19764,64 +15624,41 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_appAvailStatusInd(tvb static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes_recordSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordRes_recordSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19830,65 +15667,41 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr_recordSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordErr_recordSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19897,56 +15710,34 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisticsRecordReq_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -19955,59 +15746,36 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_generateFaultStatisti static void decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20016,61 +15784,38 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcFaultManager_fwAvailStatusInd(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq_testSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq_testSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20079,55 +15824,33 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_activityTestReq(tvbuff static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes_activityTestResult"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes_activityTestResult); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20136,51 +15859,29 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestRes(tvb static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20189,62 +15890,39 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_appUnavailableInd(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq_recordSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq_recordSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20253,59 +15931,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordReq static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20314,53 +15969,31 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcUnavailableInd(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr_activityTestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20369,68 +16002,46 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcActivityTestErr(tvb static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs; guint32 i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs); for (i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs=0; i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs; i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20439,70 +16050,47 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordRes static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; guint32 u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs; guint32 i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs); for (i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs=0; i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs < u_octet4_loop_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs; i_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr_serviceIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20511,54 +16099,32 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_genFaultStatsRecordErr static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20567,59 +16133,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsReco static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20628,59 +16171,36 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatsReco static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd_reason, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20689,64 +16209,41 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_svcAvailStatusInd(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq_recordSubject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordReq_recordSubject, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20755,56 +16252,34 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordRes_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_fw_TpFaultStatsRecord" */ - decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStatsRecord_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStatsRecord" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20813,61 +16288,38 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic static void decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr_faultStatsReqID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatisticsRecordErr_faultStatisticsError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20876,53 +16328,31 @@ decode_org_csapi_fw_fw_service_integrity_IpFwFaultManager_generateFaultStatistic static void decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery_systemDateAndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery_systemDateAndTime); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20931,53 +16361,31 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcOAM_systemDateTimeQuery(tvbuff_t * static void decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery_clientDateAndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery_clientDateAndTime); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -20986,56 +16394,33 @@ decode_org_csapi_fw_fw_service_integrity_IpFwOAM_systemDateTimeQuery(tvbuff_t *t static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21044,51 +16429,29 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_enableHeartBeat(tvbuf static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21097,53 +16460,31 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_disableHeartBeat(tvbu static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21152,51 +16493,29 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeatMgmt_changeInterval(tvbuff static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21205,51 +16524,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeat_pulse(tvbuff_t *tvb _U_, static void decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21258,56 +16555,33 @@ decode_org_csapi_fw_fw_service_integrity_IpFwHeartBeat_pulse(tvbuff_t *tvb _U_, static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21316,51 +16590,29 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_enableSvcHeartBeat(t static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21369,53 +16621,31 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_disableSvcHeartBeat( static void decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval_interval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21424,56 +16654,34 @@ decode_org_csapi_fw_fw_service_integrity_IpSvcHeartBeatMgmt_changeInterval(tvbuf static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin union "org_csapi_fw_TpFwEventCriteria" */ decode_org_csapi_fw_TpFwEventCriteria_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_fw_TpFwEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21482,53 +16690,31 @@ decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_createNotifica static void decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21537,12 +16723,8 @@ decode_org_csapi_fw_fw_service_notification_IpFwEventNotification_destroyNotific static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin union "org_csapi_fw_TpFwEventInfo" */ decode_org_csapi_fw_TpFwEventInfo_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); @@ -21551,44 +16733,26 @@ decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotific proto_tree_add_uint(tree, hf_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21597,51 +16761,29 @@ decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_reportNotific static void decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21650,58 +16792,36 @@ decode_org_csapi_fw_fw_service_notification_IpSvcEventNotification_notificationT static void decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_routeRes_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_gccs_TpCallReport" */ - decode_org_csapi_cc_gccs_TpCallReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReport" */ proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_routeRes_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21710,58 +16830,36 @@ decode_org_csapi_cc_gccs_IpAppCall_routeRes(tvbuff_t *tvb _U_, packet_info *pinf static void decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_routeErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_routeErr_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21770,56 +16868,34 @@ decode_org_csapi_cc_gccs_IpAppCall_routeErr(tvbuff_t *tvb _U_, packet_info *pinf static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_getCallInfoRes_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_gccs_TpCallInfoReport" */ - decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallInfoReport" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21828,56 +16904,34 @@ decode_org_csapi_cc_gccs_IpAppCall_getCallInfoRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_getCallInfoErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21886,12 +16940,8 @@ decode_org_csapi_cc_gccs_IpAppCall_getCallInfoErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_superviseCallRes_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_superviseCallRes_report, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -21899,44 +16949,26 @@ decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U_, packet_in proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_superviseCallRes_usedTime, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -21945,56 +16977,34 @@ decode_org_csapi_cc_gccs_IpAppCall_superviseCallRes(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_superviseCallErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22003,61 +17013,38 @@ decode_org_csapi_cc_gccs_IpAppCall_superviseCallErr(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_callFaultDetected_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_callFaultDetected_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_callFaultDetected_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22066,55 +17053,33 @@ decode_org_csapi_cc_gccs_IpAppCall_callFaultDetected(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes_digits"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes_digits); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22123,56 +17088,34 @@ decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsRes(tvbuff_t *tvb _U_, pa static void decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22181,56 +17124,34 @@ decode_org_csapi_cc_gccs_IpAppCall_getMoreDialledDigitsErr(tvbuff_t *tvb _U_, pa static void decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCall_callEnded_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_gccs_TpCallEndedReport" */ - decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallEndedReport" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22239,7 +17160,6 @@ decode_org_csapi_cc_gccs_IpAppCall_callEnded(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_responseRequested; guint32 i_org_csapi_cc_gccs_IpCall_routeReq_responseRequested; @@ -22247,37 +17167,34 @@ decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _ guint32 i_org_csapi_cc_gccs_IpCall_routeReq_appInfo; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_routeReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_responseRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_routeReq_responseRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_responseRequested); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_routeReq_responseRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_responseRequested); for (i_org_csapi_cc_gccs_IpCall_routeReq_responseRequested=0; i_org_csapi_cc_gccs_IpCall_routeReq_responseRequested < u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_responseRequested; i_org_csapi_cc_gccs_IpCall_routeReq_responseRequested++) { /* Begin struct "org_csapi_cc_gccs_TpCallReportRequest" */ - decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReportRequest" */ } /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_appInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_routeReq_appInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_appInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_routeReq_appInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_appInfo); for (i_org_csapi_cc_gccs_IpCall_routeReq_appInfo=0; i_org_csapi_cc_gccs_IpCall_routeReq_appInfo < u_octet4_loop_org_csapi_cc_gccs_IpCall_routeReq_appInfo; i_org_csapi_cc_gccs_IpCall_routeReq_appInfo++) { @@ -22289,44 +17206,26 @@ decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_routeReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22335,56 +17234,34 @@ decode_org_csapi_cc_gccs_IpCall_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _ static void decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_release_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22393,53 +17270,31 @@ decode_org_csapi_cc_gccs_IpCall_release(tvbuff_t *tvb _U_, packet_info *pinfo _U static void decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_deassignCall_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22448,55 +17303,33 @@ decode_org_csapi_cc_gccs_IpCall_deassignCall(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_getCallInfoReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_getCallInfoReq_callInfoRequested, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22505,56 +17338,34 @@ decode_org_csapi_cc_gccs_IpCall_getCallInfoReq(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_setCallChargePlan_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallChargePlan" */ - decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallChargePlan" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22563,58 +17374,36 @@ decode_org_csapi_cc_gccs_IpCall_setCallChargePlan(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_setAdviceOfCharge_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAoCInfo" */ - decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAoCInfo" */ proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_setAdviceOfCharge_tariffSwitch, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22623,55 +17412,33 @@ decode_org_csapi_cc_gccs_IpCall_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq_length, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22680,12 +17447,8 @@ decode_org_csapi_cc_gccs_IpCall_getMoreDialledDigitsReq(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_superviseCallReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_superviseCallReq_time, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -22693,44 +17456,26 @@ decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_, packet_info proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_superviseCallReq_treatment, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22739,53 +17484,31 @@ decode_org_csapi_cc_gccs_IpCall_superviseCallReq(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCall_continueProcessing_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22794,53 +17517,31 @@ decode_org_csapi_cc_gccs_IpCall_continueProcessing(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCallControlManager_callAborted_callReference, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22849,60 +17550,37 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callAborted(tvbuff_t *tvb _U_, static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cc_gccs_TpCallIdentifier" */ - decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallIdentifier" */ /* Begin struct "org_csapi_cc_gccs_TpCallEventInfo" */ - decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallEventInfo" */ proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22911,51 +17589,29 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callEventNotify(tvbuff_t *tvb _ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -22964,51 +17620,29 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationInterrupted(tvb static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23017,53 +17651,31 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callNotificationContinued(tvbuf static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23072,53 +17684,31 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadEncountered(tvbuff_ static void decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23127,19 +17717,15 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_callOverloadCeased(tvbuff_t *tv static void decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet; guint32 i_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet); for (i_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet=0; i_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet < u_octet4_loop_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet; i_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls_callReferenceSet++) { @@ -23148,44 +17734,26 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(tvbuff_t *tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23194,55 +17762,32 @@ decode_org_csapi_cc_gccs_IpAppCallControlManager_abortMultipleCalls(tvbuff_t *tv static void decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_gccs_TpCallIdentifier" */ - decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23251,57 +17796,34 @@ decode_org_csapi_cc_gccs_IpCallControlManager_createCall(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_cc_gccs_TpCallEventCriteria" */ - decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23310,53 +17832,31 @@ decode_org_csapi_cc_gccs_IpCallControlManager_enableCallNotification(tvbuff_t *t static void decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCallControlManager_disableCallNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23365,12 +17865,8 @@ decode_org_csapi_cc_gccs_IpCallControlManager_disableCallNotification(tvbuff_t * static void decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl_duration, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_cc_TpCallLoadControlMechanism" */ @@ -23379,50 +17875,32 @@ decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvbuff_t *tvb _ /* End union "org_csapi_cc_TpCallLoadControlMechanism" */ /* Begin struct "org_csapi_cc_gccs_TpCallTreatment" */ - decode_org_csapi_cc_gccs_TpCallTreatment_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallTreatment_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallTreatment" */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23431,56 +17909,34 @@ decode_org_csapi_cc_gccs_IpCallControlManager_setCallLoadControl(tvbuff_t *tvb _ static void decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_gccs_TpCallEventCriteria" */ - decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23489,64 +17945,42 @@ decode_org_csapi_cc_gccs_IpCallControlManager_changeCallNotification(tvbuff_t *t static void decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return; guint32 i_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return); for (i_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return=0; i_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return < u_octet4_loop_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return; i_org_csapi_cc_gccs_IpCallControlManager_getCriteria_return++) { /* Begin struct "org_csapi_cc_gccs_TpCallEventCriteriaResult" */ - decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallEventCriteriaResult" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23555,56 +17989,34 @@ decode_org_csapi_cc_gccs_IpCallControlManager_getCriteria(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallEventInfo" */ - decode_org_csapi_cc_TpCallEventInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallEventInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallEventInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23613,56 +18025,34 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportRes(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23671,53 +18061,31 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_eventReportErr(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23726,56 +18094,34 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaRes(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23784,53 +18130,31 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_attachMediaErr(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23839,56 +18163,34 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaRes(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23897,56 +18199,34 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_detachMediaErr(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallLegInfoReport" */ - decode_org_csapi_cc_TpCallLegInfoReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallLegInfoReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallLegInfoReport" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -23955,56 +18235,34 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24013,56 +18271,34 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_getInfoErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_routeErr_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24071,12 +18307,8 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_routeErr(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes_report, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -24084,44 +18316,26 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U_, packet_in proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes_usedTime, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24130,56 +18344,34 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseRes(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24188,61 +18380,38 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_superviseErr(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24251,55 +18420,32 @@ decode_org_csapi_cc_mpccs_IpAppCallLeg_callLegEnded(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ - decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24308,57 +18454,34 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createCall(tvbuff_t *tv static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_cc_TpCallNotificationRequest" */ - decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallNotificationRequest" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24367,53 +18490,31 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_createNotification(tvbu static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24422,56 +18523,34 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_destroyNotification(tvb static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallNotificationRequest" */ - decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallNotificationRequest" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24480,64 +18559,42 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_changeNotification(tvbu static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return; guint32 i_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return); for (i_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return=0; i_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return < u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return; i_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification_return++) { /* Begin struct "org_csapi_cc_TpNotificationRequested" */ - decode_org_csapi_cc_TpNotificationRequested_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpNotificationRequested_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpNotificationRequested" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24546,12 +18603,8 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNotification(tvbuff_ static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl_duration, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_cc_TpCallLoadControlMechanism" */ @@ -24560,50 +18613,32 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl(tvbu /* End union "org_csapi_cc_TpCallLoadControlMechanism" */ /* Begin struct "org_csapi_cc_TpCallTreatment" */ - decode_org_csapi_cc_TpCallTreatment_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallTreatment_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallTreatment" */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24612,54 +18647,31 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_setCallLoadControl(tvbu static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24668,51 +18680,29 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_enableNotifications(tvb static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24721,54 +18711,32 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_disableNotifications(tv static void decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_boolean(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_TpNotificationRequestedSetEntry" */ - decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpNotificationRequestedSetEntry" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24777,27 +18745,23 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCallControlManager_getNextNotification(tvb static void decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo; guint32 i_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_routeReq_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo); for (i_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo=0; i_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo < u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo; i_org_csapi_cc_mpccs_IpCallLeg_routeReq_appInfo++) { @@ -24809,47 +18773,29 @@ decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, packet_info *pin } /* Begin struct "org_csapi_cc_TpCallLegConnectionProperties" */ - decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallLegConnectionProperties" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24858,68 +18804,46 @@ decode_org_csapi_cc_mpccs_IpCallLeg_routeReq(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested; guint32 i_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested); for (i_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested=0; i_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested < u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested; i_org_csapi_cc_mpccs_IpCallLeg_eventReportReq_eventsRequested++) { /* Begin struct "org_csapi_cc_TpCallEventRequest" */ - decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallEventRequest" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24928,61 +18852,38 @@ decode_org_csapi_cc_mpccs_IpCallLeg_eventReportReq(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_release_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_release_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_release_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -24991,55 +18892,33 @@ decode_org_csapi_cc_mpccs_IpCallLeg_release(tvbuff_t *tvb _U_, packet_info *pinf static void decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getInfoReq_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getInfoReq_callLegInfoRequested, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25048,54 +18927,32 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getInfoReq(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getCall_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ - decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25104,53 +18961,31 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getCall(tvbuff_t *tvb _U_, packet_info *pinf static void decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25159,53 +18994,31 @@ decode_org_csapi_cc_mpccs_IpCallLeg_attachMediaReq(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25214,54 +19027,32 @@ decode_org_csapi_cc_mpccs_IpCallLeg_detachMediaReq(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25270,53 +19061,31 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getCurrentDestinationAddress(tvbuff_t *tvb _ static void decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_continueProcessing_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25325,56 +19094,34 @@ decode_org_csapi_cc_mpccs_IpCallLeg_continueProcessing(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_setChargePlan_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallChargePlan" */ - decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallChargePlan" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25383,58 +19130,36 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setChargePlan(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAoCInfo" */ - decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAoCInfo" */ proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge_tariffSwitch, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25443,12 +19168,8 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_superviseReq_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_superviseReq_time, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -25456,44 +19177,26 @@ decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_, packet_info proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_superviseReq_treatment, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25502,53 +19205,31 @@ decode_org_csapi_cc_mpccs_IpCallLeg_superviseReq(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_deassign_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25557,7 +19238,6 @@ decode_org_csapi_cc_mpccs_IpCallLeg_deassign(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames; guint32 i_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames; @@ -25565,69 +19245,48 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_, packet_info guint32 i_org_csapi_cc_mpccs_IpCallLeg_getProperties_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getProperties_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames); for (i_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames=0; i_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames < u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames; i_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_mpccs_IpCallLeg_getProperties_propertyNames); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_getProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_return); for (i_org_csapi_cc_mpccs_IpCallLeg_getProperties_return=0; i_org_csapi_cc_mpccs_IpCallLeg_getProperties_return < u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_getProperties_return; i_org_csapi_cc_mpccs_IpCallLeg_getProperties_return++) { /* Begin struct "org_csapi_cc_TpCallLegProperty" */ - decode_org_csapi_cc_TpCallLegProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallLegProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallLegProperty" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25636,68 +19295,46 @@ decode_org_csapi_cc_mpccs_IpCallLeg_getProperties(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties; guint32 i_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_setProperties_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties); for (i_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties=0; i_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties < u_octet4_loop_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties; i_org_csapi_cc_mpccs_IpCallLeg_setProperties_properties++) { /* Begin struct "org_csapi_cc_TpCallLegProperty" */ - decode_org_csapi_cc_TpCallLegProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallLegProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallLegProperty" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25706,56 +19343,34 @@ decode_org_csapi_cc_mpccs_IpCallLeg_setProperties(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallInfoReport" */ - decode_org_csapi_cc_TpCallInfoReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallInfoReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallInfoReport" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25764,56 +19379,34 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoRes(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25822,12 +19415,8 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_getInfoErr(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes_report, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -25835,44 +19424,26 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t *tvb _U_, pa proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes_usedTime, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25881,56 +19452,34 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseRes(tvbuff_t *tvb _U_, pa static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25939,56 +19488,34 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_superviseErr(tvbuff_t *tvb _U_, pa static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallEndedReport" */ - decode_org_csapi_cc_TpCallEndedReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallEndedReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallEndedReport" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -25997,59 +19524,37 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_callEnded(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ - decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26058,66 +19563,44 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCall_createAndRouteCallLegErr(tvbuff_t static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return; guint32 i_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return); for (i_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return=0; i_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return < u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return; i_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs_return++) { /* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ - decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26126,57 +19609,34 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_getCallLegs(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ - decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26185,7 +19645,6 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createCallLeg(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested; guint32 i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested; @@ -26193,31 +19652,28 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvbuff_t *tv guint32 i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested); for (i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested=0; i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested < u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested; i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_eventsRequested++) { /* Begin struct "org_csapi_cc_TpCallEventRequest" */ - decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallEventRequest" */ } /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo); for (i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo=0; i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo < u_octet4_loop_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo; i_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq_appInfo++) { @@ -26230,47 +19686,28 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvbuff_t *tv get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ - decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26279,61 +19716,38 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_createAndRouteCallLegReq(tvbuff_t *tv static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_release_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_release_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_release_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26342,53 +19756,31 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_release(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26397,55 +19789,33 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_deassignCall(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq_callInfoRequested, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26454,56 +19824,34 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_getInfoReq(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallChargePlan" */ - decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallChargePlan_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallChargePlan" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26512,58 +19860,36 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_setChargePlan(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAoCInfo" */ - decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAoCInfo" */ proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge_tariffSwitch, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26572,12 +19898,8 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_setAdviceOfCharge(tvbuff_t *tvb _U_, static void decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq_time, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -26585,44 +19907,26 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tvb _U_, packe proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq_treatment, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26631,77 +19935,55 @@ decode_org_csapi_cc_mpccs_IpMultiPartyCall_superviseReq(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet; guint32 i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ - decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet); for (i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet=0; i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet < u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet; i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_callLegReferenceSet++) { /* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ - decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ } /* Begin struct "org_csapi_cc_TpCallNotificationInfo" */ - decode_org_csapi_cc_TpCallNotificationInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallNotificationInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallNotificationInfo" */ proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin union "org_csapi_cc_mpccs_TpAppMultiPartyCallBack" */ decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_cc_mpccs_TpAppMultiPartyCallBack" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26710,53 +19992,31 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_reportNotification(t static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted_callReference, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26765,51 +20025,29 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callAborted(tvbuff_t static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26818,51 +20056,29 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerInterrupted(t static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26871,53 +20087,31 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_managerResumed(tvbuf static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncountered(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncountered_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26926,53 +20120,31 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadEncounte static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -26981,19 +20153,15 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_callOverloadCeased(t static void decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet; guint32 i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet); for (i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet=0; i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet < u_octet4_loop_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet; i_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls_callReferenceSet++) { @@ -27002,44 +20170,26 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls(t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27048,66 +20198,43 @@ decode_org_csapi_cc_mpccs_IpAppMultiPartyCallControlManager_abortMultipleCalls(t static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes_report, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_mmccs_TpCallSuperviseVolume" */ - decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpCallSuperviseVolume" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes_qualityOfService, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes_qualityOfService, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27116,56 +20243,34 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeRes(tvbuff_t *tvb _ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_TpCallError" */ - decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27174,73 +20279,50 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCall_superviseVolumeErr(tvbuff_t *tvb _ static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams; guint32 i_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams; guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams); for (i_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams=0; i_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams < u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams; i_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_streams++) { /* Begin struct "org_csapi_cc_mmccs_TpMediaStream" */ - decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMediaStream" */ } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_type, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes_type, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27249,53 +20331,31 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCallLeg_mediaStreamMonitorRes(tvbuff_t static void decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaStream_subtract_mediaStreamSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27304,21 +20364,17 @@ decode_org_csapi_cc_mmccs_IpMultiMediaStream_subtract(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList; guint32 i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList); for (i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList=0; i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList < u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList; i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow_mediaStreamList++) { @@ -27327,44 +20383,26 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuff_t *tvb _U_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27373,68 +20411,46 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamAllow(tvbuff_t *tvb _U_ static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria; guint32 i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria); for (i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria=0; i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria < u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria; i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq_mediaStreamEventCriteria++) { /* Begin struct "org_csapi_cc_mmccs_TpMediaStreamRequest" */ - decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMediaStreamRequest" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27443,66 +20459,44 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_mediaStreamMonitorReq(tvbuff_t *tv static void decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return; guint32 i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return); for (i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return=0; i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return < u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return; i_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams_return++) { /* Begin struct "org_csapi_cc_mmccs_TpMediaStream" */ - decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMediaStream" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27511,58 +20505,36 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallLeg_getMediaStreams(tvbuff_t *tvb _U_, static void decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq_callSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_mmccs_TpCallSuperviseVolume" */ - decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpCallSuperviseVolume" */ proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq_treatment, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27571,7 +20543,6 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCall_superviseVolumeReq(tvbuff_t *tvb _U_, static void decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet; guint32 i_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet; @@ -27580,86 +20551,63 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotificat guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cc_mmccs_TpMultiMediaCallIdentifier" */ - decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMultiMediaCallIdentifier" */ u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet); for (i_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet=0; i_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet < u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet; i_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_callLegReferenceSet++) { /* Begin struct "org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier" */ - decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier" */ } u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams); for (i_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams=0; i_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams < u_octet4_loop_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams; i_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_mediaStreams++) { /* Begin struct "org_csapi_cc_mmccs_TpMediaStream" */ - decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMediaStream_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMediaStream" */ } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_type, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_type, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_qualityOfService, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_qualityOfService, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin union "org_csapi_cc_mmccs_TpAppMultiMediaCallBack" */ decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_cc_mmccs_TpAppMultiMediaCallBack" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27668,57 +20616,34 @@ decode_org_csapi_cc_mmccs_IpAppMultiMediaCallControlManager_reportMediaNotificat static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */ - decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27727,53 +20652,31 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_createMediaNotification static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27782,56 +20685,34 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_destroyMediaNotificatio static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */ - decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27840,64 +20721,42 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_changeMediaNotification static void decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return; guint32 i_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return); for (i_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return=0; i_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return < u_octet4_loop_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return; i_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification_return++) { /* Begin struct "org_csapi_cc_mmccs_TpMediaNotificationRequested" */ - decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMediaNotificationRequested" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27906,55 +20765,33 @@ decode_org_csapi_cc_mmccs_IpMultiMediaCallControlManager_getMediaNotification(tv static void decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -27963,55 +20800,33 @@ decode_org_csapi_cc_cccs_IpAppSubConfCall_chairSelection(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest_callLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28020,60 +20835,37 @@ decode_org_csapi_cc_cccs_IpAppSubConfCall_floorRequest(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpAppConfCall_partyJoined_conferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ - decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ /* Begin struct "org_csapi_cc_cccs_TpJoinEventInfo" */ - decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpJoinEventInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28082,55 +20874,33 @@ decode_org_csapi_cc_cccs_IpAppConfCall_partyJoined(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes_conferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes_callLeg, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28139,15 +20909,10 @@ decode_org_csapi_cc_cccs_IpAppConfCall_leaveMonitorRes(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCallControlManager_createConference_numberOfSubConferences, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_cc_cccs_TpConfPolicy" */ @@ -28160,45 +20925,27 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(tvbuff_t *tvb proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCallControlManager_createConference_duration, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_cccs_TpConfCallIdentifier" */ - decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpConfCallIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28207,55 +20954,33 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_createConference(tvbuff_t *tvb static void decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cc_cccs_TpConfSearchCriteria" */ - decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpConfSearchCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_cccs_TpConfSearchResult" */ - decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpConfSearchResult" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28264,16 +20989,11 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_checkResources(tvbuff_t *tvb _ static void decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_cccs_IpConfCallControlManager_reserveResources_startTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources_startTime); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources_numberOfParticipants, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -28285,45 +21005,27 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(tvbuff_t *tvb /* End union "org_csapi_cc_cccs_TpConfPolicy" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_cccs_TpResourceReservation" */ - decode_org_csapi_cc_cccs_TpResourceReservation_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpResourceReservation_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpResourceReservation" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28332,54 +21034,32 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_reserveResources(tvbuff_t *tvb static void decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cc_cccs_TpResourceReservation" */ - decode_org_csapi_cc_cccs_TpResourceReservation_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpResourceReservation_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpResourceReservation" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28388,55 +21068,32 @@ decode_org_csapi_cc_cccs_IpConfCallControlManager_freeResources(tvbuff_t *tvb _U static void decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cc_cccs_TpConfCallIdentifier" */ - decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpConfCallIdentifier" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28445,21 +21102,17 @@ decode_org_csapi_cc_cccs_IpAppConfCallControlManager_conferenceCreated(tvbuff_t static void decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList; guint32 i_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList); for (i_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList=0; i_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList < u_octet4_loop_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList; i_org_csapi_cc_cccs_IpSubConfCall_splitSubConference_callLegList++) { @@ -28469,47 +21122,28 @@ decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *tvb _U_, pac get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */ - decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28518,55 +21152,33 @@ decode_org_csapi_cc_cccs_IpSubConfCall_splitSubConference(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference_subConferenceCallSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference_targetSubConferenceCall, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28575,12 +21187,8 @@ decode_org_csapi_cc_cccs_IpSubConfCall_mergeSubConference(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg_subConferenceCallSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg_targetSubConferenceCall, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -28588,44 +21196,26 @@ decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_, packet_inf proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg_callLeg, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28634,55 +21224,33 @@ decode_org_csapi_cc_cccs_IpSubConfCall_moveCallLeg(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_inspectVideo_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_inspectVideo_inspectedCallLeg, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28691,53 +21259,31 @@ decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideo(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28746,55 +21292,33 @@ decode_org_csapi_cc_cccs_IpSubConfCall_inspectVideoCancel(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker_speakerCallLeg, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28803,55 +21327,33 @@ decode_org_csapi_cc_cccs_IpSubConfCall_appointSpeaker(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_chairSelection_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_chairSelection_chairCallLeg, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28860,12 +21362,8 @@ decode_org_csapi_cc_cccs_IpSubConfCall_chairSelection(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy_subConferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_cc_cccs_TpConfPolicy" */ @@ -28874,44 +21372,26 @@ decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff_t *tvb _U_, /* End union "org_csapi_cc_cccs_TpConfPolicy" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28920,66 +21400,44 @@ decode_org_csapi_cc_cccs_IpSubConfCall_changeConferencePolicy(tvbuff_t *tvb _U_, static void decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cc_cccs_IpConfCall_getSubConferences_return; guint32 i_org_csapi_cc_cccs_IpConfCall_getSubConferences_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCall_getSubConferences_conferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cc_cccs_IpConfCall_getSubConferences_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCall_getSubConferences_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_cccs_IpConfCall_getSubConferences_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCall_getSubConferences_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_cccs_IpConfCall_getSubConferences_return); for (i_org_csapi_cc_cccs_IpConfCall_getSubConferences_return=0; i_org_csapi_cc_cccs_IpConfCall_getSubConferences_return < u_octet4_loop_org_csapi_cc_cccs_IpConfCall_getSubConferences_return; i_org_csapi_cc_cccs_IpConfCall_getSubConferences_return++) { /* Begin struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */ - decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -28988,62 +21446,39 @@ decode_org_csapi_cc_cccs_IpConfCall_getSubConferences(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCall_createSubConference_conferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin union "org_csapi_cc_cccs_TpConfPolicy" */ decode_org_csapi_cc_cccs_TpConfPolicy_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_cc_cccs_TpConfPolicy" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */ - decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpSubConfCallIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29052,53 +21487,31 @@ decode_org_csapi_cc_cccs_IpConfCall_createSubConference(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq_conferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29107,54 +21520,32 @@ decode_org_csapi_cc_cccs_IpConfCall_leaveMonitorReq(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_IpConfCall_getConferenceAddress_conferenceSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29163,63 +21554,40 @@ decode_org_csapi_cc_cccs_IpConfCall_getConferenceAddress(tvbuff_t *tvb _U_, pack static void decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoRes_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoRes_response, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoRes_response, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29228,63 +21596,40 @@ decode_org_csapi_ui_IpAppUI_sendInfoRes(tvbuff_t *tvb _U_, packet_info *pinfo _U static void decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoErr_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29293,65 +21638,42 @@ decode_org_csapi_ui_IpAppUI_sendInfoErr(tvbuff_t *tvb _U_, packet_info *pinfo _U static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectRes_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectRes_response, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectRes_response, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_IpAppUI_sendInfoAndCollectRes_collectedInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectRes_collectedInfo); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29360,63 +21682,40 @@ decode_org_csapi_ui_IpAppUI_sendInfoAndCollectRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectErr_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_sendInfoAndCollectErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29425,61 +21724,38 @@ decode_org_csapi_ui_IpAppUI_sendInfoAndCollectErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_userInteractionFaultDetected_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_userInteractionFaultDetected_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUI_userInteractionFaultDetected_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29488,65 +21764,42 @@ decode_org_csapi_ui_IpAppUI_userInteractionFaultDetected(tvbuff_t *tvb _U_, pack static void decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageRes_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageRes_response, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageRes_response, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageRes_messageID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29555,63 +21808,40 @@ decode_org_csapi_ui_IpAppUICall_recordMessageRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageErr_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_recordMessageErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29620,63 +21850,40 @@ decode_org_csapi_ui_IpAppUICall_recordMessageErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageRes_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageRes_response, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageRes_response, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29685,63 +21892,40 @@ decode_org_csapi_ui_IpAppUICall_deleteMessageRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageErr_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_deleteMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29750,55 +21934,33 @@ decode_org_csapi_ui_IpAppUICall_deleteMessageErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_abortActionRes_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_abortActionRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29807,63 +21969,40 @@ decode_org_csapi_ui_IpAppUICall_abortActionRes(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_abortActionErr_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_abortActionErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_abortActionErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_abortActionErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29872,12 +22011,8 @@ decode_org_csapi_ui_IpAppUICall_abortActionErr(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_getMessageRes_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_getMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -29888,44 +22023,26 @@ decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, packet_info *pi /* End union "org_csapi_ui_TpUIInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29934,63 +22051,40 @@ decode_org_csapi_ui_IpAppUICall_getMessageRes(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_getMessageErr_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_getMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_getMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUICall_getMessageErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -29999,54 +22093,32 @@ decode_org_csapi_ui_IpAppUICall_getMessageErr(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_ui_TpUIIdentifier" */ - decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIIdentifier" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30055,51 +22127,29 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionAborted(tvbuff_t *tvb _U_, pac static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30108,51 +22158,29 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationInterrupted(tvbuff static void decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30161,60 +22189,37 @@ decode_org_csapi_ui_IpAppUIManager_userInteractionNotificationContinued(tvbuff_t static void decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_ui_TpUIIdentifier" */ - decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIIdentifier" */ /* Begin struct "org_csapi_ui_TpUIEventNotificationInfo" */ - decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIEventNotificationInfo" */ proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIManager_reportEventNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30223,66 +22228,44 @@ decode_org_csapi_ui_IpAppUIManager_reportEventNotification(tvbuff_t *tvb _U_, pa static void decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet; guint32 i_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet); for (i_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet=0; i_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet < u_octet4_loop_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet; i_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions_userInteractionSet++) { /* Begin struct "org_csapi_ui_TpUIIdentifier" */ - decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIIdentifier" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30291,17 +22274,13 @@ decode_org_csapi_ui_IpAppUIManager_abortMultipleUserInteractions(tvbuff_t *tvb _ static void decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_ui_IpUI_sendInfoReq_variableInfo; guint32 i_org_csapi_ui_IpUI_sendInfoReq_variableInfo; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoReq_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_ui_TpUIInfo" */ @@ -30309,10 +22288,10 @@ decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_ui_TpUIInfo" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_IpUI_sendInfoReq_language"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_IpUI_sendInfoReq_language); u_octet4_loop_org_csapi_ui_IpUI_sendInfoReq_variableInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoReq_variableInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpUI_sendInfoReq_variableInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoReq_variableInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpUI_sendInfoReq_variableInfo); for (i_org_csapi_ui_IpUI_sendInfoReq_variableInfo=0; i_org_csapi_ui_IpUI_sendInfoReq_variableInfo < u_octet4_loop_org_csapi_ui_IpUI_sendInfoReq_variableInfo; i_org_csapi_ui_IpUI_sendInfoReq_variableInfo++) { @@ -30328,44 +22307,26 @@ decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoReq_responseRequested, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30374,17 +22335,13 @@ decode_org_csapi_ui_IpUI_sendInfoReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo; guint32 i_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoAndCollectReq_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_ui_TpUIInfo" */ @@ -30392,10 +22349,10 @@ decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, packet_info *p decode_org_csapi_ui_TpUIInfo_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_ui_TpUIInfo" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_IpUI_sendInfoAndCollectReq_language"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_IpUI_sendInfoAndCollectReq_language); u_octet4_loop_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo); for (i_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo=0; i_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo < u_octet4_loop_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo; i_org_csapi_ui_IpUI_sendInfoAndCollectReq_variableInfo++) { @@ -30407,49 +22364,31 @@ decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, packet_info *p } /* Begin struct "org_csapi_ui_TpUICollectCriteria" */ - decode_org_csapi_ui_TpUICollectCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUICollectCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUICollectCriteria" */ proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoAndCollectReq_responseRequested, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_sendInfoAndCollectReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30458,53 +22397,31 @@ decode_org_csapi_ui_IpUI_sendInfoAndCollectReq(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_release_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30513,55 +22430,33 @@ decode_org_csapi_ui_IpUI_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot static void decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_setOriginatingAddress_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_IpUI_setOriginatingAddress_origin"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_IpUI_setOriginatingAddress_origin); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30570,53 +22465,31 @@ decode_org_csapi_ui_IpUI_setOriginatingAddress(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUI_getOriginatingAddress_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_IpUI_getOriginatingAddress_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_IpUI_getOriginatingAddress_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30625,12 +22498,8 @@ decode_org_csapi_ui_IpUI_getOriginatingAddress(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_recordMessageReq_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_ui_TpUIInfo" */ @@ -30639,47 +22508,29 @@ decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, packet_info *pi /* End union "org_csapi_ui_TpUIInfo" */ /* Begin struct "org_csapi_ui_TpUIMessageCriteria" */ - decode_org_csapi_ui_TpUIMessageCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIMessageCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIMessageCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_recordMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30688,55 +22539,33 @@ decode_org_csapi_ui_IpUICall_recordMessageReq(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_deleteMessageReq_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_deleteMessageReq_messageID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_deleteMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30745,55 +22574,33 @@ decode_org_csapi_ui_IpUICall_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_abortActionReq_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_abortActionReq_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30802,55 +22609,33 @@ decode_org_csapi_ui_IpUICall_abortActionReq(tvbuff_t *tvb _U_, packet_info *pinf static void decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_getMessageReq_userInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_getMessageReq_messageID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUICall_getMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30859,58 +22644,35 @@ decode_org_csapi_ui_IpUICall_getMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_ui_TpUIIdentifier" */ - decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30919,60 +22681,37 @@ decode_org_csapi_ui_IpUIManager_createUI(tvbuff_t *tvb _U_, packet_info *pinfo _ static void decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin union "org_csapi_ui_TpUITargetObject" */ decode_org_csapi_ui_TpUITargetObject_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_ui_TpUITargetObject" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_ui_TpUICallIdentifier" */ - decode_org_csapi_ui_TpUICallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUICallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUICallIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -30981,57 +22720,34 @@ decode_org_csapi_ui_IpUIManager_createUICall(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_ui_TpUIEventCriteria" */ - decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIManager_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31040,53 +22756,31 @@ decode_org_csapi_ui_IpUIManager_createNotification(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIManager_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31095,56 +22789,34 @@ decode_org_csapi_ui_IpUIManager_destroyNotification(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIManager_changeNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_ui_TpUIEventCriteria" */ - decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31153,64 +22825,42 @@ decode_org_csapi_ui_IpUIManager_changeNotification(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_ui_IpUIManager_getNotification_return; guint32 i_org_csapi_ui_IpUIManager_getNotification_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_ui_IpUIManager_getNotification_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIManager_getNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpUIManager_getNotification_return); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIManager_getNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpUIManager_getNotification_return); for (i_org_csapi_ui_IpUIManager_getNotification_return=0; i_org_csapi_ui_IpUIManager_getNotification_return < u_octet4_loop_org_csapi_ui_IpUIManager_getNotification_return; i_org_csapi_ui_IpUIManager_getNotification_return++) { /* Begin struct "org_csapi_ui_TpUIEventCriteriaResult" */ - decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIEventCriteriaResult" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31219,54 +22869,31 @@ decode_org_csapi_ui_IpUIManager_getNotification(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIManager_enableNotifications_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31275,51 +22902,29 @@ decode_org_csapi_ui_IpUIManager_enableNotifications(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31328,12 +22933,8 @@ decode_org_csapi_ui_IpUIManager_disableNotifications(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageRes_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -31344,44 +22945,26 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb _U_, packet_ /* End union "org_csapi_ui_TpUIInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31390,63 +22973,40 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageRes(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageErr_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31455,63 +23015,40 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageErr(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes_response, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes_response, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31520,63 +23057,40 @@ decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageRes(tvbuff_t *tvb _U_, pack static void decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31585,12 +23099,8 @@ decode_org_csapi_ui_IpAppUIAdminManager_deleteMessageErr(tvbuff_t *tvb _U_, pack static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_putMessageRes_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_putMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -31598,44 +23108,26 @@ decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb _U_, packet_ proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_putMessageRes_messageID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31644,63 +23136,40 @@ decode_org_csapi_ui_IpAppUIAdminManager_putMessageRes(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_putMessageErr_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_putMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_putMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_putMessageErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31709,23 +23178,19 @@ decode_org_csapi_ui_IpAppUIAdminManager_putMessageErr(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList; guint32 i_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList); for (i_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList=0; i_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList < u_octet4_loop_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList; i_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_messageIDList++) { @@ -31736,44 +23201,26 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *tvb _U_, pac proto_tree_add_boolean(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListRes_final, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31782,63 +23229,40 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageListRes(tvbuff_t *tvb _U_, pac static void decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListErr_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_IpAppUIAdminManager_getMessageListErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31847,55 +23271,33 @@ decode_org_csapi_ui_IpAppUIAdminManager_getMessageListErr(tvbuff_t *tvb _U_, pac static void decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_getMessageReq_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_getMessageReq_messageID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_getMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31904,12 +23306,8 @@ decode_org_csapi_ui_IpUIAdminManager_getMessageReq(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_putMessageReq_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin union "org_csapi_ui_TpUIInfo" */ @@ -31918,44 +23316,26 @@ decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_, packet_inf /* End union "org_csapi_ui_TpUIInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_putMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -31964,55 +23344,33 @@ decode_org_csapi_ui_IpUIAdminManager_putMessageReq(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_deleteMessageReq_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_deleteMessageReq_messageID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_deleteMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32021,55 +23379,33 @@ decode_org_csapi_ui_IpUIAdminManager_deleteMessageReq(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_getMessageListReq_usrInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_boolean(tree, hf_org_csapi_ui_IpUIAdminManager_getMessageListReq_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_ui_IpUIAdminManager_getMessageListReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32078,68 +23414,46 @@ decode_org_csapi_ui_IpUIAdminManager_getMessageListReq(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations; guint32 i_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations); for (i_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations=0; i_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations < u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations; i_org_csapi_mm_ul_IpAppUserLocation_locationReportRes_locations++) { /* Begin struct "org_csapi_mm_TpUserLocation" */ - decode_org_csapi_mm_TpUserLocation_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocation_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocation" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32148,65 +23462,41 @@ decode_org_csapi_mm_ul_IpAppUserLocation_locationReportRes(tvbuff_t *tvb _U_, pa static void decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_locationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32215,68 +23505,46 @@ decode_org_csapi_mm_ul_IpAppUserLocation_locationReportErr(tvbuff_t *tvb _U_, pa static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations; guint32 i_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations); for (i_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations=0; i_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations < u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations; i_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes_locations++) { /* Begin struct "org_csapi_mm_TpUserLocationExtended" */ - decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationExtended" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32285,65 +23553,41 @@ decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportRes(tvbuff_t *tvb static void decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32352,68 +23596,46 @@ decode_org_csapi_mm_ul_IpAppUserLocation_extendedLocationReportErr(tvbuff_t *tvb static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations; guint32 i_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations); for (i_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations=0; i_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations < u_octet4_loop_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations; i_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport_locations++) { /* Begin struct "org_csapi_mm_TpUserLocationExtended" */ - decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationExtended" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32422,65 +23644,41 @@ decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReport(tvbuff_t *tvb _U static void decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32489,69 +23687,46 @@ decode_org_csapi_mm_ul_IpAppUserLocation_periodicLocationReportErr(tvbuff_t *tvb static void decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ul_IpUserLocation_locationReportReq_users; guint32 i_org_csapi_mm_ul_IpUserLocation_locationReportReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ul_IpUserLocation_locationReportReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_locationReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpUserLocation_locationReportReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_locationReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpUserLocation_locationReportReq_users); for (i_org_csapi_mm_ul_IpUserLocation_locationReportReq_users=0; i_org_csapi_mm_ul_IpUserLocation_locationReportReq_users < u_octet4_loop_org_csapi_mm_ul_IpUserLocation_locationReportReq_users; i_org_csapi_mm_ul_IpUserLocation_locationReportReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_locationReportReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32560,72 +23735,49 @@ decode_org_csapi_mm_ul_IpUserLocation_locationReportReq(tvbuff_t *tvb _U_, packe static void decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users; guint32 i_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users); for (i_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users=0; i_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users < u_octet4_loop_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users; i_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_mm_TpLocationRequest" */ - decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationRequest" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32634,74 +23786,51 @@ decode_org_csapi_mm_ul_IpUserLocation_extendedLocationReportReq(tvbuff_t *tvb _U static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users; guint32 i_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users); for (i_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users=0; i_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users < u_octet4_loop_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users; i_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_mm_TpLocationRequest" */ - decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationRequest" */ proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_reportingInterval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32710,54 +23839,32 @@ decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStartReq(tvbuff_t static void decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mm_TpMobilityStopAssignmentData" */ - decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32766,54 +23873,32 @@ decode_org_csapi_mm_ul_IpUserLocation_periodicLocationReportingStop(tvbuff_t *tv static void decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_boolean(tree, hf_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mm_TpPeriodicLocationRequestSetEntry" */ - decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpPeriodicLocationRequestSetEntry" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32822,64 +23907,41 @@ decode_org_csapi_mm_ul_IpUserLocation_getNextPeriodicLocationRequest(tvbuff_t *t static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_mm_TpUserLocationExtended" */ - decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationExtended_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationExtended" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport_criterion, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport_criterion, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32888,65 +23950,41 @@ decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReport(tvbuff static void decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -32955,7 +23993,6 @@ decode_org_csapi_mm_ul_IpAppTriggeredUserLocation_triggeredLocationReportErr(tvb static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users; guint32 i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users; @@ -32963,76 +24000,54 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartRe guint32 i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users); for (i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users=0; i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users < u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users; i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_mm_TpLocationRequest" */ - decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationRequest" */ u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers); for (i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers=0; i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers < u_octet4_loop_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers; i_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_triggers++) { /* Begin struct "org_csapi_mm_TpLocationTrigger" */ - decode_org_csapi_mm_TpLocationTrigger_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationTrigger_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationTrigger" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33041,54 +24056,32 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStartRe static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mm_TpMobilityStopAssignmentData" */ - decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33097,54 +24090,32 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_triggeredLocationReportingStop(tv static void decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_boolean(tree, hf_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mm_TpTriggeredLocationRequestSetEntry" */ - decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpTriggeredLocationRequestSetEntry" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33153,68 +24124,46 @@ decode_org_csapi_mm_ul_IpTriggeredUserLocation_getNextTriggeredLocationRequest(t static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations; guint32 i_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations); for (i_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations=0; i_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations < u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations; i_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes_locations++) { /* Begin struct "org_csapi_mm_TpUserLocationCamel" */ - decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationCamel" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33223,65 +24172,41 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportRes(tvbuff_t *tvb _ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33290,68 +24215,46 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_locationReportErr(tvbuff_t *tvb _ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations; guint32 i_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations); for (i_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations=0; i_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations < u_octet4_loop_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations; i_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport_locations++) { /* Begin struct "org_csapi_mm_TpUserLocationCamel" */ - decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationCamel" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33360,65 +24263,41 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReport(tvbuff_t * static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33427,59 +24306,37 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_periodicLocationReportErr(tvbuff_ static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_mm_TpUserLocationCamel" */ - decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationCamel_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationCamel" */ /* Begin struct "org_csapi_mm_TpLocationTriggerCamel" */ - decode_org_csapi_mm_TpLocationTriggerCamel_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationTriggerCamel_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationTriggerCamel" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33488,65 +24345,41 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReport(tvbuff_t static void decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33555,69 +24388,46 @@ decode_org_csapi_mm_ulc_IpAppUserLocationCamel_triggeredLocationReportErr(tvbuff static void decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users; guint32 i_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users); for (i_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users=0; i_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users < u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users; i_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33626,71 +24436,48 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_locationReportReq(tvbuff_t *tvb _U_, static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users; guint32 i_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users); for (i_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users=0; i_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users < u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users; i_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_reportingInterval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33699,54 +24486,32 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStartReq(tv static void decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mm_TpMobilityStopAssignmentData" */ - decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33755,72 +24520,49 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_periodicLocationReportingStop(tvbuff static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users; guint32 i_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users); for (i_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users=0; i_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users < u_octet4_loop_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users; i_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_mm_TpLocationTriggerCamel" */ - decode_org_csapi_mm_TpLocationTriggerCamel_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationTriggerCamel_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationTriggerCamel" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33829,54 +24571,32 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStartReq(t static void decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mm_TpMobilityStopAssignmentData" */ - decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33885,54 +24605,32 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_triggeredLocationReportingStop(tvbuf static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_boolean(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mm_TpPeriodicLocationRequestSetEntry" */ - decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpPeriodicLocationRequestSetEntry" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33941,54 +24639,32 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextPeriodicLocationRequest(tvbuf static void decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_boolean(tree, hf_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mm_TpTriggeredLocationRequestSetEntry" */ - decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpTriggeredLocationRequestSetEntry" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -33997,56 +24673,34 @@ decode_org_csapi_mm_ulc_IpUserLocationCamel_getNextTriggeredLocationRequest(tvbu static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_mm_TpUserLocationEmergency" */ - decode_org_csapi_mm_TpUserLocationEmergency_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationEmergency_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationEmergency" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34055,65 +24709,41 @@ decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReport(tvbuf static void decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34122,57 +24752,34 @@ decode_org_csapi_mm_ule_IpAppUserLocationEmergency_emergencyLocationReportErr(tv static void decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_mm_TpUserLocationEmergencyRequest" */ - decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserLocationEmergencyRequest" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34181,54 +24788,31 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_emergencyLocationReportReq(tvbuf static void decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReports(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReports_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34237,53 +24821,31 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_subscribeEmergencyLocationReport static void decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationReports(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationReports_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34292,68 +24854,46 @@ decode_org_csapi_mm_ule_IpUserLocationEmergency_unSubscribeEmergencyLocationRepo static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status; guint32 i_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportRes_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status); for (i_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status=0; i_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status < u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status; i_org_csapi_mm_us_IpAppUserStatus_statusReportRes_status++) { /* Begin struct "org_csapi_mm_TpUserStatus" */ - decode_org_csapi_mm_TpUserStatus_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserStatus_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserStatus" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34362,65 +24902,41 @@ decode_org_csapi_mm_us_IpAppUserStatus_statusReportRes(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_statusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34429,56 +24945,34 @@ decode_org_csapi_mm_us_IpAppUserStatus_statusReportErr(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_mm_TpUserStatus" */ - decode_org_csapi_mm_TpUserStatus_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserStatus_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserStatus" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34487,65 +24981,41 @@ decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReport(tvbuff_t *tvb _U_, static void decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34554,68 +25024,46 @@ decode_org_csapi_mm_us_IpAppUserStatus_triggeredStatusReportErr(tvbuff_t *tvb _U static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status; guint32 i_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status); for (i_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status=0; i_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status < u_octet4_loop_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status; i_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes_status++) { /* Begin struct "org_csapi_mm_TpUserStatusExtended" */ - decode_org_csapi_mm_TpUserStatusExtended_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserStatusExtended_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserStatusExtended" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34624,65 +25072,41 @@ decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportRes(tvbuff_t *tvb _U_ static void decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34691,56 +25115,34 @@ decode_org_csapi_mm_us_IpAppUserStatus_extendedStatusReportErr(tvbuff_t *tvb _U_ static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_mm_TpUserStatusExtended" */ - decode_org_csapi_mm_TpUserStatusExtended_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserStatusExtended_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserStatusExtended" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34749,65 +25151,41 @@ decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReport(tvbuff_t *tvb _U static void decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34816,69 +25194,46 @@ decode_org_csapi_mm_us_IpAppUserStatus_extTriggeredStatusReportErr(tvbuff_t *tvb static void decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_us_IpUserStatus_statusReportReq_users; guint32 i_org_csapi_mm_us_IpUserStatus_statusReportReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_us_IpUserStatus_statusReportReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_statusReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_statusReportReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_statusReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_statusReportReq_users); for (i_org_csapi_mm_us_IpUserStatus_statusReportReq_users=0; i_org_csapi_mm_us_IpUserStatus_statusReportReq_users < u_octet4_loop_org_csapi_mm_us_IpUserStatus_statusReportReq_users; i_org_csapi_mm_us_IpUserStatus_statusReportReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_statusReportReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34887,69 +25242,46 @@ decode_org_csapi_mm_us_IpUserStatus_statusReportReq(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users; guint32 i_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users); for (i_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users=0; i_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users < u_octet4_loop_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users; i_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -34958,54 +25290,32 @@ decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStartReq(tvbuff_t *t static void decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mm_TpMobilityStopAssignmentData" */ - decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35014,54 +25324,32 @@ decode_org_csapi_mm_us_IpUserStatus_triggeredStatusReportingStop(tvbuff_t *tvb _ static void decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_boolean(tree, hf_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mm_TpTriggeredStatusRequestSetEntry" */ - decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpTriggeredStatusRequestSetEntry" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35070,69 +25358,46 @@ decode_org_csapi_mm_us_IpUserStatus_getNextTriggeredStatusRequest(tvbuff_t *tvb static void decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users; guint32 i_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users); for (i_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users=0; i_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users < u_octet4_loop_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users; i_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35141,69 +25406,46 @@ decode_org_csapi_mm_us_IpUserStatus_extendedStatusReportReq(tvbuff_t *tvb _U_, p static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users; guint32 i_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users); for (i_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users=0; i_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users < u_octet4_loop_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users; i_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35212,54 +25454,32 @@ decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStartReq(tvbuff_t static void decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mm_TpMobilityStopAssignmentData" */ - decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpMobilityStopAssignmentData" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35268,7 +25488,6 @@ decode_org_csapi_mm_us_IpUserStatus_extTriggeredStatusReportingStop(tvbuff_t *tv static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation; guint32 i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation; @@ -35276,23 +25495,20 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbu guint32 i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation); for (i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation=0; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation < u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation++) { u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation); for (i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation=0; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation < u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_contactInformation++) { @@ -35306,20 +25522,16 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbu } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return); for (i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return=0; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return < u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return++) { u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return); for (i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return=0; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return < u_octet4_loop_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return; i_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification_return++) { @@ -35333,34 +25545,20 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbu } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35369,65 +25567,41 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotification(tvbu static void decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr_cause, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr_diagnostic, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStartErr_diagnostic, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35436,7 +25610,6 @@ decode_org_csapi_mm_ub_IpAppUserBinding_triggeredBindingRequestNotificationStart static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users; guint32 i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users; @@ -35444,73 +25617,51 @@ decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq guint32 i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users); for (i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users=0; i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users < u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users; i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria); for (i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria=0; i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria < u_octet4_loop_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria; i_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_criteria++) { /* Begin struct "org_csapi_mm_TpBindingNotificationCriteria" */ - decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpBindingNotificationCriteria" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35519,53 +25670,31 @@ decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStartReq static void decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35574,54 +25703,32 @@ decode_org_csapi_mm_ub_IpUserBinding_triggeredBindingRequestNotificationStop(tvb static void decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities_terminalIdentity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities_terminalIdentity); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_termcap_TpTerminalCapabilities" */ - decode_org_csapi_termcap_TpTerminalCapabilities_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_termcap_TpTerminalCapabilities_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_termcap_TpTerminalCapabilities" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35630,73 +25737,51 @@ decode_org_csapi_termcap_IpTerminalCapabilities_getTerminalCapabilities(tvbuff_t static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals; guint32 i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals, tvb,*offset-4, 4, u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals); + item = proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals, tvb,*offset-4, 4, u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals); for (i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals=0; i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals < u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals; i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_terminals++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReport_criteria, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_termcap_TpTerminalCapabilities" */ - decode_org_csapi_termcap_TpTerminalCapabilities_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_termcap_TpTerminalCapabilities_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_termcap_TpTerminalCapabilities" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35705,73 +25790,50 @@ decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapa static void decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals; guint32 i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals; guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals, tvb,*offset-4, 4, u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals); + item = proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals, tvb,*offset-4, 4, u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals); for (i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals=0; i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals < u_octet4_loop_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals; i_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_terminals++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapabilityReportErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35780,74 +25842,51 @@ decode_org_csapi_termcap_IpAppExtendedTerminalCapabilities_triggeredTerminalCapa static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals; guint32 i_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals, tvb,*offset-4, 4, u_octet4_loop_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals); + item = proto_tree_add_uint(tree, hf_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals, tvb,*offset-4, 4, u_octet4_loop_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals); for (i_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals=0; i_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals < u_octet4_loop_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals; i_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_terminals++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_termcap_TpTerminalCapabilityScope" */ - decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_termcap_TpTerminalCapabilityScope" */ proto_tree_add_uint(tree, hf_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_criteria, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStartReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35856,53 +25895,31 @@ decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabil static void decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStop(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabilityStop_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35911,58 +25928,36 @@ decode_org_csapi_termcap_IpExtendedTerminalCapabilities_triggeredTerminalCapabil static void decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_connectRes_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionReport" */ - decode_org_csapi_dsc_TpDataSessionReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionReport" */ proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_connectRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -35971,58 +25966,36 @@ decode_org_csapi_dsc_IpAppDataSession_connectRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_connectErr_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionError" */ - decode_org_csapi_dsc_TpDataSessionError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionError" */ proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_connectErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36031,66 +26004,43 @@ decode_org_csapi_dsc_IpAppDataSession_connectErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes_report, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionSuperviseVolume" */ - decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionSuperviseVolume" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes_qualityOfService, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes_qualityOfService, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36099,56 +26049,34 @@ decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionRes(tvbuff_t *tvb _U_, static void decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionError" */ - decode_org_csapi_dsc_TpDataSessionError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionError" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36157,61 +26085,38 @@ decode_org_csapi_dsc_IpAppDataSession_superviseDataSessionErr(tvbuff_t *tvb _U_, static void decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36220,53 +26125,31 @@ decode_org_csapi_dsc_IpAppDataSession_dataSessionFaultDetected(tvbuff_t *tvb _U_ static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted_dataSession, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36275,60 +26158,37 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionAborted(tvbuff_t static void decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_dsc_TpDataSessionIdentifier" */ - decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionIdentifier" */ /* Begin struct "org_csapi_dsc_TpDataSessionEventInfo" */ - decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionEventInfo" */ proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSessionControlManager_reportNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36337,51 +26197,29 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_reportNotification(tvbuff_t static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationContinued(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36390,51 +26228,29 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationConti static void decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36443,19 +26259,15 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_dataSessionNotificationInter static void decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet; guint32 i_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet); for (i_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet=0; i_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet < u_octet4_loop_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet; i_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions_dataSessionSet++) { @@ -36464,44 +26276,26 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36510,71 +26304,49 @@ decode_org_csapi_dsc_IpAppDataSessionControlManager_abortMultipleDataSessions(tv static void decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_dsc_IpDataSession_connectReq_responseRequested; guint32 i_org_csapi_dsc_IpDataSession_connectReq_responseRequested; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_connectReq_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_dsc_IpDataSession_connectReq_responseRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_connectReq_responseRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_dsc_IpDataSession_connectReq_responseRequested); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_connectReq_responseRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_dsc_IpDataSession_connectReq_responseRequested); for (i_org_csapi_dsc_IpDataSession_connectReq_responseRequested=0; i_org_csapi_dsc_IpDataSession_connectReq_responseRequested < u_octet4_loop_org_csapi_dsc_IpDataSession_connectReq_responseRequested; i_org_csapi_dsc_IpDataSession_connectReq_responseRequested++) { /* Begin struct "org_csapi_dsc_TpDataSessionReportRequest" */ - decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionReportRequest" */ } /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_connectReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36583,56 +26355,34 @@ decode_org_csapi_dsc_IpDataSession_connectReq(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_release_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionReleaseCause" */ - decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionReleaseCause" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36641,58 +26391,36 @@ decode_org_csapi_dsc_IpDataSession_release(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_superviseDataSessionReq_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_superviseDataSessionReq_treatment, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionSuperviseVolume" */ - decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionSuperviseVolume" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36701,56 +26429,34 @@ decode_org_csapi_dsc_IpDataSession_superviseDataSessionReq(tvbuff_t *tvb _U_, pa static void decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_setDataSessionChargePlan_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionChargePlan" */ - decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionChargePlan" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36759,58 +26465,36 @@ decode_org_csapi_dsc_IpDataSession_setDataSessionChargePlan(tvbuff_t *tvb _U_, p static void decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_setAdviceOfCharge_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAoCInfo" */ - decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAoCInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAoCInfo" */ proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_setAdviceOfCharge_tariffSwitch, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36819,53 +26503,31 @@ decode_org_csapi_dsc_IpDataSession_setAdviceOfCharge(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_deassignDataSession_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36874,53 +26536,31 @@ decode_org_csapi_dsc_IpDataSession_deassignDataSession(tvbuff_t *tvb _U_, packet static void decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSession_continueProcessing_dataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36929,57 +26569,34 @@ decode_org_csapi_dsc_IpDataSession_continueProcessing(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_dsc_TpDataSessionEventCriteria" */ - decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSessionControlManager_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -36988,53 +26605,31 @@ decode_org_csapi_dsc_IpDataSessionControlManager_createNotification(tvbuff_t *tv static void decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSessionControlManager_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37043,56 +26638,34 @@ decode_org_csapi_dsc_IpDataSessionControlManager_destroyNotification(tvbuff_t *t static void decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSessionControlManager_changeNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_dsc_TpDataSessionEventCriteria" */ - decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37101,54 +26674,31 @@ decode_org_csapi_dsc_IpDataSessionControlManager_changeNotification(tvbuff_t *tv static void decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSessionControlManager_enableNotifications_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37157,51 +26707,29 @@ decode_org_csapi_dsc_IpDataSessionControlManager_enableNotifications(tvbuff_t *t static void decode_org_csapi_dsc_IpDataSessionControlManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37210,64 +26738,42 @@ decode_org_csapi_dsc_IpDataSessionControlManager_disableNotifications(tvbuff_t * static void decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return; guint32 i_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return); for (i_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return=0; i_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return < u_octet4_loop_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return; i_org_csapi_dsc_IpDataSessionControlManager_getNotifications_return++) { /* Begin struct "org_csapi_dsc_TpDataSessionEventCriteriaResult" */ - decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionEventCriteriaResult" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37276,57 +26782,34 @@ decode_org_csapi_dsc_IpDataSessionControlManager_getNotifications(tvbuff_t *tvb static void decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_dsc_TpDataSessionEventCriteria" */ - decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_dsc_IpDataSessionControlManager_createNotifications_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37335,57 +26818,35 @@ decode_org_csapi_dsc_IpDataSessionControlManager_createNotifications(tvbuff_t *t static void decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMessagingManager_openMailbox_authenticationInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMessagingManager_openMailbox_authenticationInfo); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_gms_TpMailboxIdentifier" */ - decode_org_csapi_gms_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_gms_TpMailboxIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_gms_TpMailboxIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37394,59 +26855,36 @@ decode_org_csapi_gms_IpMessagingManager_openMailbox(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin union "org_csapi_gms_TpMessagingEventCriteria" */ decode_org_csapi_gms_TpMessagingEventCriteria_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_gms_TpMessagingEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessagingManager_enableMessagingNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37455,53 +26893,31 @@ decode_org_csapi_gms_IpMessagingManager_enableMessagingNotification(tvbuff_t *tv static void decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessagingManager_disableMessagingNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37510,56 +26926,33 @@ decode_org_csapi_gms_IpMessagingManager_disableMessagingNotification(tvbuff_t *t static void decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpAppMessagingManager_mailboxTerminated_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37568,64 +26961,40 @@ decode_org_csapi_gms_IpAppMessagingManager_mailboxTerminated(tvbuff_t *tvb _U_, static void decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected_fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected_fault, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37634,15 +27003,10 @@ decode_org_csapi_gms_IpAppMessagingManager_mailboxFaultDetected(tvbuff_t *tvb _U static void decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin union "org_csapi_gms_TpMessagingEventInfo" */ decode_org_csapi_gms_TpMessagingEventInfo_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); @@ -37651,44 +27015,26 @@ decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbuff_t *tvb _U proto_tree_add_uint(tree, hf_org_csapi_gms_IpAppMessagingManager_messagingEventNotify_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37697,51 +27043,29 @@ decode_org_csapi_gms_IpAppMessagingManager_messagingEventNotify(tvbuff_t *tvb _U static void decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37750,53 +27074,31 @@ decode_org_csapi_gms_IpAppMessagingManager_messagingNotificationTerminated(tvbuf static void decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_close_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37805,53 +27107,31 @@ decode_org_csapi_gms_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_lock_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37860,53 +27140,31 @@ decode_org_csapi_gms_IpMailbox_lock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p static void decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_unlock_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37915,53 +27173,31 @@ decode_org_csapi_gms_IpMailbox_unlock(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_getInfoAmount_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_getInfoAmount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -37970,17 +27206,13 @@ decode_org_csapi_gms_IpMailbox_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_gms_IpMailbox_getInfoProperties_return; guint32 i_org_csapi_gms_IpMailbox_getInfoProperties_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_getInfoProperties_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_getInfoProperties_firstProperty, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -37988,15 +27220,11 @@ decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_, packet_info proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_getInfoProperties_numberOfProperties, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_gms_IpMailbox_getInfoProperties_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_getInfoProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailbox_getInfoProperties_return); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_getInfoProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailbox_getInfoProperties_return); for (i_org_csapi_gms_IpMailbox_getInfoProperties_return=0; i_org_csapi_gms_IpMailbox_getInfoProperties_return < u_octet4_loop_org_csapi_gms_IpMailbox_getInfoProperties_return; i_org_csapi_gms_IpMailbox_getInfoProperties_return++) { @@ -38008,34 +27236,20 @@ decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_, packet_info } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38044,23 +27258,19 @@ decode_org_csapi_gms_IpMailbox_getInfoProperties(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties; guint32 i_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_setInfoProperties_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_setInfoProperties_firstProperty, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties); for (i_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties=0; i_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties < u_octet4_loop_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties; i_org_csapi_gms_IpMailbox_setInfoProperties_mailboxInfoProperties++) { @@ -38072,44 +27282,26 @@ decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_, packet_info } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38118,56 +27310,34 @@ decode_org_csapi_gms_IpMailbox_setInfoProperties(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_openFolder_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMailbox_openFolder_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMailbox_openFolder_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_gms_TpMailboxFolderIdentifier" */ - decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_gms_TpMailboxFolderIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38176,55 +27346,33 @@ decode_org_csapi_gms_IpMailbox_openFolder(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailbox_createFolder_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMailbox_createFolder_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMailbox_createFolder_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38233,56 +27381,34 @@ decode_org_csapi_gms_IpMailbox_createFolder(tvbuff_t *tvb _U_, packet_info *pinf static void decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMailbox_remove_authenticationInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMailbox_remove_authenticationInfo); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38291,55 +27417,33 @@ decode_org_csapi_gms_IpMailbox_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getInfoAmount_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMessage_getInfoAmount_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMessage_getInfoAmount_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getInfoAmount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38348,35 +27452,27 @@ decode_org_csapi_gms_IpMessage_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_gms_IpMessage_getInfoProperties_return; guint32 i_org_csapi_gms_IpMessage_getInfoProperties_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getInfoProperties_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMessage_getInfoProperties_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMessage_getInfoProperties_messageID); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getInfoProperties_firstProperty, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getInfoProperties_numberOfProperties, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_gms_IpMessage_getInfoProperties_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getInfoProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMessage_getInfoProperties_return); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getInfoProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMessage_getInfoProperties_return); for (i_org_csapi_gms_IpMessage_getInfoProperties_return=0; i_org_csapi_gms_IpMessage_getInfoProperties_return < u_octet4_loop_org_csapi_gms_IpMessage_getInfoProperties_return; i_org_csapi_gms_IpMessage_getInfoProperties_return++) { @@ -38388,34 +27484,20 @@ decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_, packet_info } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38424,25 +27506,21 @@ decode_org_csapi_gms_IpMessage_getInfoProperties(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties; guint32 i_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_setInfoProperties_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMessage_setInfoProperties_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMessage_setInfoProperties_messageID); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_setInfoProperties_firstProperty, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties); for (i_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties=0; i_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties < u_octet4_loop_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties; i_org_csapi_gms_IpMessage_setInfoProperties_messageInfoProperties++) { @@ -38454,44 +27532,26 @@ decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_, packet_info } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38500,55 +27560,33 @@ decode_org_csapi_gms_IpMessage_setInfoProperties(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_remove_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMessage_remove_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMessage_remove_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38557,55 +27595,33 @@ decode_org_csapi_gms_IpMessage_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMessage_getContent_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMessage_getContent_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMessage_getContent_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMessage_getContent_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMessage_getContent_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38614,53 +27630,31 @@ decode_org_csapi_gms_IpMessage_getContent(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getInfoAmount_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getInfoAmount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38669,17 +27663,13 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoAmount(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_gms_IpMailboxFolder_getInfoProperties_return; guint32 i_org_csapi_gms_IpMailboxFolder_getInfoProperties_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getInfoProperties_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getInfoProperties_firstProperty, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -38687,15 +27677,11 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb _U_, packet proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getInfoProperties_numberOfProperties, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_gms_IpMailboxFolder_getInfoProperties_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getInfoProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailboxFolder_getInfoProperties_return); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getInfoProperties_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailboxFolder_getInfoProperties_return); for (i_org_csapi_gms_IpMailboxFolder_getInfoProperties_return=0; i_org_csapi_gms_IpMailboxFolder_getInfoProperties_return < u_octet4_loop_org_csapi_gms_IpMailboxFolder_getInfoProperties_return; i_org_csapi_gms_IpMailboxFolder_getInfoProperties_return++) { @@ -38707,34 +27693,20 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb _U_, packet } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38743,23 +27715,19 @@ decode_org_csapi_gms_IpMailboxFolder_getInfoProperties(tvbuff_t *tvb _U_, packet static void decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties; guint32 i_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_setInfoProperties_firstProperty, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties); for (i_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties=0; i_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties < u_octet4_loop_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties; i_org_csapi_gms_IpMailboxFolder_setInfoProperties_folderInfoProperties++) { @@ -38771,44 +27739,26 @@ decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb _U_, packet } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38817,23 +27767,19 @@ decode_org_csapi_gms_IpMailboxFolder_setInfoProperties(tvbuff_t *tvb _U_, packet static void decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties; guint32 i_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_putMessage_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMailboxFolder_putMessage_message"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMailboxFolder_putMessage_message); u_octet4_loop_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties); for (i_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties=0; i_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties < u_octet4_loop_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties; i_org_csapi_gms_IpMailboxFolder_putMessage_messageInfoProperties++) { @@ -38845,44 +27791,26 @@ decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, packet_info * } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38891,56 +27819,33 @@ decode_org_csapi_gms_IpMailboxFolder_putMessage(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_getMessage_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMailboxFolder_getMessage_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMailboxFolder_getMessage_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -38949,55 +27854,33 @@ decode_org_csapi_gms_IpMailboxFolder_getMessage(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_close_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_close_folderSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39006,55 +27889,33 @@ decode_org_csapi_gms_IpMailboxFolder_close(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_gms_IpMailboxFolder_remove_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_IpMailboxFolder_remove_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_IpMailboxFolder_remove_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39063,51 +27924,29 @@ decode_org_csapi_gms_IpMailboxFolder_remove(tvbuff_t *tvb _U_, packet_info *pinf static void decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpVPrP_getVPrPID_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpVPrP_getVPrPID_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39116,51 +27955,29 @@ decode_org_csapi_cm_IpVPrP_getVPrPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpVPrP_getSlaID_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpVPrP_getSlaID_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39169,57 +27986,34 @@ decode_org_csapi_cm_IpVPrP_getSlaID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p static void decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_IpVPrP_getStatus_return, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_IpVPrP_getStatus_return, tvb, *offset-4, 4, u_octet4); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39228,52 +28022,30 @@ decode_org_csapi_cm_IpVPrP_getStatus(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpProvisionedQoSInfo" */ - decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpProvisionedQoSInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39282,52 +28054,30 @@ decode_org_csapi_cm_IpVPrP_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpValidityInfo" */ - decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpValidityInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39336,52 +28086,30 @@ decode_org_csapi_cm_IpVPrP_getValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpPipeQoSInfo" */ - decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpPipeQoSInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39390,52 +28118,30 @@ decode_org_csapi_cm_IpVPrP_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpDsCodepoint" */ - decode_org_csapi_cm_TpDsCodepoint_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpDsCodepoint_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpDsCodepoint" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39444,63 +28150,41 @@ decode_org_csapi_cm_IpVPrP_getDsCodepoint(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cm_IpVPrN_getVPrPList_return; guint32 i_org_csapi_cm_IpVPrN_getVPrPList_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cm_IpVPrN_getVPrPList_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_IpVPrN_getVPrPList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpVPrN_getVPrPList_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_IpVPrN_getVPrPList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpVPrN_getVPrPList_return); for (i_org_csapi_cm_IpVPrN_getVPrPList_return=0; i_org_csapi_cm_IpVPrN_getVPrPList_return < u_octet4_loop_org_csapi_cm_IpVPrN_getVPrPList_return; i_org_csapi_cm_IpVPrN_getVPrPList_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpVPrN_getVPrPList_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpVPrN_getVPrPList_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39509,54 +28193,31 @@ decode_org_csapi_cm_IpVPrN_getVPrPList(tvbuff_t *tvb _U_, packet_info *pinfo _U_ static void decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpVPrN_getVPrP_vPrPID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpVPrN_getVPrP_vPrPID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39565,55 +28226,31 @@ decode_org_csapi_cm_IpVPrN_getVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pr static void decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39622,53 +28259,31 @@ decode_org_csapi_cm_IpVPrN_createVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpVPrN_deleteVPrP_vPrPID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpVPrN_deleteVPrP_vPrPID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39677,54 +28292,31 @@ decode_org_csapi_cm_IpVPrN_deleteVPrP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpQoSMenu_getTemplate_templateType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpQoSMenu_getTemplate_templateType); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39733,63 +28325,41 @@ decode_org_csapi_cm_IpQoSMenu_getTemplate(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cm_IpQoSMenu_getTemplateList_return; guint32 i_org_csapi_cm_IpQoSMenu_getTemplateList_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cm_IpQoSMenu_getTemplateList_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_IpQoSMenu_getTemplateList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpQoSMenu_getTemplateList_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_IpQoSMenu_getTemplateList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpQoSMenu_getTemplateList_return); for (i_org_csapi_cm_IpQoSMenu_getTemplateList_return=0; i_org_csapi_cm_IpQoSMenu_getTemplateList_return < u_octet4_loop_org_csapi_cm_IpQoSMenu_getTemplateList_return; i_org_csapi_cm_IpQoSMenu_getTemplateList_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpQoSMenu_getTemplateList_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpQoSMenu_getTemplateList_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39798,52 +28368,29 @@ decode_org_csapi_cm_IpQoSMenu_getTemplateList(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39852,52 +28399,29 @@ decode_org_csapi_cm_IpConnectivityManager_getQoSMenu(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39906,51 +28430,29 @@ decode_org_csapi_cm_IpConnectivityManager_getEnterpriseNetwork(tvbuff_t *tvb _U_ static void decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpQoSTemplate_getTemplateType_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpQoSTemplate_getTemplateType_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -39959,51 +28461,29 @@ decode_org_csapi_cm_IpQoSTemplate_getTemplateType(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpQoSTemplate_getDescription_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpQoSTemplate_getDescription_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40012,53 +28492,31 @@ decode_org_csapi_cm_IpQoSTemplate_getDescription(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpQoSTemplate_setSlaID_slaID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpQoSTemplate_setSlaID_slaID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40067,52 +28525,30 @@ decode_org_csapi_cm_IpQoSTemplate_setSlaID(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpPipeQoSInfo" */ - decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpPipeQoSInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40121,54 +28557,32 @@ decode_org_csapi_cm_IpQoSTemplate_getPipeQoSInfo(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cm_TpPipeQoSInfo" */ - decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpPipeQoSInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpPipeQoSInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40177,52 +28591,30 @@ decode_org_csapi_cm_IpQoSTemplate_setPipeQoSInfo(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpValidityInfo" */ - decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpValidityInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40231,54 +28623,32 @@ decode_org_csapi_cm_IpQoSTemplate_getValidityInfo(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cm_TpValidityInfo" */ - decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpValidityInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpValidityInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40287,54 +28657,32 @@ decode_org_csapi_cm_IpQoSTemplate_setValidityInfo(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_cm_TpProvisionedQoSInfo" */ - decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpProvisionedQoSInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40343,52 +28691,30 @@ decode_org_csapi_cm_IpQoSTemplate_setProvisionedQoSInfo(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpProvisionedQoSInfo" */ - decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpProvisionedQoSInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40397,52 +28723,30 @@ decode_org_csapi_cm_IpQoSTemplate_getProvisionedQoSInfo(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpDsCodepoint" */ - decode_org_csapi_cm_TpDsCodepoint_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpDsCodepoint_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpDsCodepoint" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40451,63 +28755,41 @@ decode_org_csapi_cm_IpQoSTemplate_getDsCodepoint(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return; guint32 i_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return); for (i_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return=0; i_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return < u_octet4_loop_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return; i_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpEnterpriseNetwork_getSiteList_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpEnterpriseNetwork_getSiteList_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40516,52 +28798,29 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getSiteList(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40570,54 +28829,31 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getVPrN(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpEnterpriseNetwork_getSite_siteID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpEnterpriseNetwork_getSite_siteID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40626,63 +28862,41 @@ decode_org_csapi_cm_IpEnterpriseNetwork_getSite(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return; guint32 i_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return); for (i_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return=0; i_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return < u_octet4_loop_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return; i_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40691,51 +28905,29 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPList(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpEnterpriseNetworkSite_getSiteID_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40744,51 +28936,29 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteID(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40797,51 +28967,29 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteLocation(tvbuff_t *tvb _U_, p static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40850,52 +28998,30 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSiteDescription(tvbuff_t *tvb _U_ static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpIPSubnet" */ - decode_org_csapi_cm_TpIPSubnet_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpIPSubnet_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpIPSubnet" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40904,54 +29030,32 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getIPSubnet(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet_sapID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet_sapID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cm_TpIPSubnet" */ - decode_org_csapi_cm_TpIPSubnet_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpIPSubnet_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpIPSubnet" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -40960,56 +29064,34 @@ decode_org_csapi_cm_IpEnterpriseNetworkSite_getSAPIPSubnet(tvbuff_t *tvb _U_, pa static void decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_am_TpChargingEventInfo" */ - decode_org_csapi_am_TpChargingEventInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpChargingEventInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpChargingEventInfo" */ proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_reportNotification_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41018,68 +29100,46 @@ decode_org_csapi_am_IpAppAccountManager_reportNotification(tvbuff_t *tvb _U_, pa static void decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances; guint32 i_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceRes_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances); for (i_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances=0; i_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances < u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances; i_org_csapi_am_IpAppAccountManager_queryBalanceRes_balances++) { /* Begin struct "org_csapi_am_TpBalance" */ - decode_org_csapi_am_TpBalance_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalance_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpBalance" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41088,61 +29148,38 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceRes(tvbuff_t *tvb _U_, packe static void decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceErr_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41151,68 +29188,46 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceErr(tvbuff_t *tvb _U_, packe static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory; guint32 i_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_retrievalID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory); for (i_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory=0; i_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory < u_octet4_loop_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory; i_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes_transactionHistory++) { /* Begin struct "org_csapi_am_TpTransactionHistory" */ - decode_org_csapi_am_TpTransactionHistory_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpTransactionHistory_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpTransactionHistory" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41221,61 +29236,38 @@ decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryRes(tvbuff_t * static void decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr_retrievalID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr_transactionHistoryError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr_transactionHistoryError, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41284,68 +29276,46 @@ decode_org_csapi_am_IpAppAccountManager_retrieveTransactionHistoryErr(tvbuff_t * static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates; guint32 i_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates); for (i_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates=0; i_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates < u_octet4_loop_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates; i_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes_dates++) { /* Begin struct "org_csapi_am_TpBalanceExpiryDate" */ - decode_org_csapi_am_TpBalanceExpiryDate_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalanceExpiryDate_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpBalanceExpiryDate" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41354,61 +29324,38 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateRes(tvbuff_t *tvb static void decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41417,56 +29364,34 @@ decode_org_csapi_am_IpAppAccountManager_queryBalanceExpiryDateErr(tvbuff_t *tvb static void decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_updateBalanceRes_requestId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_am_TpBalance" */ - decode_org_csapi_am_TpBalance_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalance_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpBalance" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41475,61 +29400,38 @@ decode_org_csapi_am_IpAppAccountManager_updateBalanceRes(tvbuff_t *tvb _U_, pack static void decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_updateBalanceErr_requestId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_updateBalanceErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_updateBalanceErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41538,55 +29440,33 @@ decode_org_csapi_am_IpAppAccountManager_updateBalanceErr(tvbuff_t *tvb _U_, pack static void decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_createVoucherRes_requestId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_createVoucherRes_voucherId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41595,61 +29475,38 @@ decode_org_csapi_am_IpAppAccountManager_createVoucherRes(tvbuff_t *tvb _U_, pack static void decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_createVoucherErr_requestId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_createVoucherErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_createVoucherErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41658,55 +29515,33 @@ decode_org_csapi_am_IpAppAccountManager_createVoucherErr(tvbuff_t *tvb _U_, pack static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_destroyVoucherRes_requestId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_destroyVoucherRes_voucherId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41715,63 +29550,40 @@ decode_org_csapi_am_IpAppAccountManager_destroyVoucherRes(tvbuff_t *tvb _U_, pac static void decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_destroyVoucherErr_requestId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_destroyVoucherErr_voucherId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_destroyVoucherErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_destroyVoucherErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41780,56 +29592,34 @@ decode_org_csapi_am_IpAppAccountManager_destroyVoucherErr(tvbuff_t *tvb _U_, pac static void decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryVoucherRes_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_am_TpVoucher" */ - decode_org_csapi_am_TpVoucher_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpVoucher_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpVoucher" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41838,63 +29628,40 @@ decode_org_csapi_am_IpAppAccountManager_queryVoucherRes(tvbuff_t *tvb _U_, packe static void decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryVoucherErr_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryVoucherErr_voucherId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryVoucherErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryVoucherErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41903,68 +29670,46 @@ decode_org_csapi_am_IpAppAccountManager_queryVoucherErr(tvbuff_t *tvb _U_, packe static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers; guint32 i_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers); for (i_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers=0; i_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers < u_octet4_loop_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers; i_org_csapi_am_IpAppAccountManager_queryUserVouchersRes_vouchers++) { /* Begin struct "org_csapi_am_TpVoucher" */ - decode_org_csapi_am_TpVoucher_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpVoucher_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpVoucher" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -41973,61 +29718,38 @@ decode_org_csapi_am_IpAppAccountManager_queryUserVouchersRes(tvbuff_t *tvb _U_, static void decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryUserVouchersErr_queryId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryUserVouchersErr_cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAppAccountManager_queryUserVouchersErr_cause, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42036,57 +29758,34 @@ decode_org_csapi_am_IpAppAccountManager_queryUserVouchersErr(tvbuff_t *tvb _U_, static void decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - /* Begin struct "org_csapi_am_TpChargingEventCriteria" */ - decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpChargingEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42095,53 +29794,31 @@ decode_org_csapi_am_IpAccountManager_createNotification(tvbuff_t *tvb _U_, packe static void decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_destroyNotification_assignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42150,66 +29827,44 @@ decode_org_csapi_am_IpAccountManager_destroyNotification(tvbuff_t *tvb _U_, pack static void decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceReq_users; guint32 i_org_csapi_am_IpAccountManager_queryBalanceReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryBalanceReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryBalanceReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceReq_users); for (i_org_csapi_am_IpAccountManager_queryBalanceReq_users=0; i_org_csapi_am_IpAccountManager_queryBalanceReq_users < u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceReq_users; i_org_csapi_am_IpAccountManager_queryBalanceReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryBalanceReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42218,56 +29873,34 @@ decode_org_csapi_am_IpAccountManager_queryBalanceReq(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_changeNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_am_TpChargingEventCriteria" */ - decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpChargingEventCriteria" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42276,64 +29909,42 @@ decode_org_csapi_am_IpAccountManager_changeNotification(tvbuff_t *tvb _U_, packe static void decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_am_IpAccountManager_getNotification_return; guint32 i_org_csapi_am_IpAccountManager_getNotification_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_am_IpAccountManager_getNotification_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_getNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAccountManager_getNotification_return); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_getNotification_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAccountManager_getNotification_return); for (i_org_csapi_am_IpAccountManager_getNotification_return=0; i_org_csapi_am_IpAccountManager_getNotification_return < u_octet4_loop_org_csapi_am_IpAccountManager_getNotification_return; i_org_csapi_am_IpAccountManager_getNotification_return++) { /* Begin struct "org_csapi_am_TpChargingEventCriteriaResult" */ - decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpChargingEventCriteriaResult" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42342,57 +29953,35 @@ decode_org_csapi_am_IpAccountManager_getNotification(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42401,54 +29990,31 @@ decode_org_csapi_am_IpAccountManager_retrieveTransactionHistoryReq(tvbuff_t *tvb static void decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_enableNotifications_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42457,51 +30023,29 @@ decode_org_csapi_am_IpAccountManager_enableNotifications(tvbuff_t *tvb _U_, pack static void decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42510,66 +30054,44 @@ decode_org_csapi_am_IpAccountManager_disableNotifications(tvbuff_t *tvb _U_, pac static void decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users; guint32 i_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users); + item = proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users); for (i_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users=0; i_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users < u_octet4_loop_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users; i_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42578,61 +30100,39 @@ decode_org_csapi_am_IpAccountManager_queryBalanceExpiryDateReq(tvbuff_t *tvb _U_ static void decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_boolean(tree, hf_org_csapi_am_IpAccountManager_updateBalanceReq_debit, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "org_csapi_am_TpBalanceInfo" */ - decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpBalanceInfo" */ proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_updateBalanceReq_period, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_updateBalanceReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42641,57 +30141,35 @@ decode_org_csapi_am_IpAccountManager_updateBalanceReq(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_am_TpBalanceInfo" */ - decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpBalanceInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_createVoucherReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42700,53 +30178,31 @@ decode_org_csapi_am_IpAccountManager_createVoucherReq(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_destroyVoucherReq_voucherId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_destroyVoucherReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42755,53 +30211,31 @@ decode_org_csapi_am_IpAccountManager_destroyVoucherReq(tvbuff_t *tvb _U_, packet static void decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryVoucherReq_voucherId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryVoucherReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42810,54 +30244,32 @@ decode_org_csapi_am_IpAccountManager_queryVoucherReq(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_am_IpAccountManager_queryUserVouchersReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42866,65 +30278,42 @@ decode_org_csapi_am_IpAccountManager_queryUserVouchersReq(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42933,63 +30322,41 @@ decode_org_csapi_cs_IpAppChargingSession_creditAmountErr(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditAmountRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -42998,65 +30365,42 @@ decode_org_csapi_cs_IpAppChargingSession_creditAmountRes(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43065,7 +30409,6 @@ decode_org_csapi_cs_IpAppChargingSession_creditUnitErr(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes; guint32 i_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes; @@ -43073,76 +30416,55 @@ decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb _U_, packet guint32 i_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes); for (i_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes=0; i_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes < u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes; i_org_csapi_cs_IpAppChargingSession_creditUnitRes_creditedVolumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft); for (i_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft=0; i_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft < u_octet4_loop_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft; i_org_csapi_cs_IpAppChargingSession_creditUnitRes_reservedUnitsLeft++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_creditUnitRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43151,65 +30473,42 @@ decode_org_csapi_cs_IpAppChargingSession_creditUnitRes(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43218,63 +30517,41 @@ decode_org_csapi_cs_IpAppChargingSession_debitAmountErr(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitAmountRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43283,65 +30560,42 @@ decode_org_csapi_cs_IpAppChargingSession_debitAmountRes(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43350,7 +30604,6 @@ decode_org_csapi_cs_IpAppChargingSession_debitUnitErr(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes; guint32 i_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes; @@ -43358,76 +30611,55 @@ decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb _U_, packet_ guint32 i_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes); for (i_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes=0; i_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes < u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes; i_org_csapi_cs_IpAppChargingSession_debitUnitRes_debitedVolumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft); for (i_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft=0; i_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft < u_octet4_loop_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft; i_org_csapi_cs_IpAppChargingSession_debitUnitRes_reservedUnitsLeft++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_debitUnitRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43436,65 +30668,42 @@ decode_org_csapi_cs_IpAppChargingSession_debitUnitRes(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43503,60 +30712,38 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditAmountErr(tvbuff_t *tvb _U_ static void decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditAmountRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43565,65 +30752,42 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditAmountRes(tvbuff_t *tvb _U_ static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43632,72 +30796,50 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditUnitErr(tvbuff_t *tvb _U_, static void decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes; guint32 i_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes); for (i_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes=0; i_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes < u_octet4_loop_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes; i_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_creditedVolumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directCreditUnitRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43706,65 +30848,42 @@ decode_org_csapi_cs_IpAppChargingSession_directCreditUnitRes(tvbuff_t *tvb _U_, static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43773,60 +30892,38 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitAmountErr(tvbuff_t *tvb _U_, static void decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitAmountRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43835,65 +30932,42 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitAmountRes(tvbuff_t *tvb _U_, static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43902,72 +30976,50 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitUnitErr(tvbuff_t *tvb _U_, p static void decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes; guint32 i_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes); for (i_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes=0; i_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes < u_octet4_loop_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes; i_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_debitedVolumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_directDebitUnitRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -43976,61 +31028,38 @@ decode_org_csapi_cs_IpAppChargingSession_directDebitUnitRes(tvbuff_t *tvb _U_, p static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44039,55 +31068,33 @@ decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeErr(tvbuff_t *tvb _U_, pa static void decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes_sessionTimeLeft, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44096,61 +31103,38 @@ decode_org_csapi_cs_IpAppChargingSession_extendLifeTimeRes(tvbuff_t *tvb _U_, pa static void decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_rateErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_rateErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_rateErr_error, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44159,70 +31143,48 @@ decode_org_csapi_cs_IpAppChargingSession_rateErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpAppChargingSession_rateRes_rates; guint32 i_org_csapi_cs_IpAppChargingSession_rateRes_rates; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_rateRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cs_IpAppChargingSession_rateRes_rates = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_rateRes_rates, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_rateRes_rates); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_rateRes_rates, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_rateRes_rates); for (i_org_csapi_cs_IpAppChargingSession_rateRes_rates=0; i_org_csapi_cs_IpAppChargingSession_rateRes_rates < u_octet4_loop_org_csapi_cs_IpAppChargingSession_rateRes_rates; i_org_csapi_cs_IpAppChargingSession_rateRes_rates++) { /* Begin struct "org_csapi_cs_TpPriceVolume" */ - decode_org_csapi_cs_TpPriceVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpPriceVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpPriceVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_rateRes_validityTimeLeft, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44231,65 +31193,42 @@ decode_org_csapi_cs_IpAppChargingSession_rateRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44298,62 +31237,40 @@ decode_org_csapi_cs_IpAppChargingSession_reserveAmountErr(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountRes_sessionTimeLeft, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveAmountRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44362,65 +31279,42 @@ decode_org_csapi_cs_IpAppChargingSession_reserveAmountRes(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitErr_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitErr_error, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitErr_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44429,28 +31323,24 @@ decode_org_csapi_cs_IpAppChargingSession_reserveUnitErr(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits; guint32 i_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitRes_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits); for (i_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits=0; i_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits < u_octet4_loop_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits; i_org_csapi_cs_IpAppChargingSession_reserveUnitRes_reservedUnits++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } @@ -44459,44 +31349,26 @@ decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tvb _U_, packe proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_reserveUnitRes_requestNumberNextRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44505,61 +31377,38 @@ decode_org_csapi_cs_IpAppChargingSession_reserveUnitRes(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_sessionEnded_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_sessionEnded_report, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingSession_sessionEnded_report, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44568,63 +31417,41 @@ decode_org_csapi_cs_IpAppChargingSession_sessionEnded(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_creditAmountReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_boolean(tree, hf_org_csapi_cs_IpChargingSession_creditAmountReq_closeReservation, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_creditAmountReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44633,29 +31460,25 @@ decode_org_csapi_cs_IpChargingSession_creditAmountReq(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_creditUnitReq_volumes; guint32 i_org_csapi_cs_IpChargingSession_creditUnitReq_volumes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_creditUnitReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_creditUnitReq_volumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_creditUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_creditUnitReq_volumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_creditUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_creditUnitReq_volumes); for (i_org_csapi_cs_IpChargingSession_creditUnitReq_volumes=0; i_org_csapi_cs_IpChargingSession_creditUnitReq_volumes < u_octet4_loop_org_csapi_cs_IpChargingSession_creditUnitReq_volumes; i_org_csapi_cs_IpChargingSession_creditUnitReq_volumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } @@ -44664,44 +31487,26 @@ decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U_, packet_in proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_creditUnitReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44710,63 +31515,41 @@ decode_org_csapi_cs_IpChargingSession_creditUnitReq(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_debitAmountReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_boolean(tree, hf_org_csapi_cs_IpChargingSession_debitAmountReq_closeReservation, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_debitAmountReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44775,29 +31558,25 @@ decode_org_csapi_cs_IpChargingSession_debitAmountReq(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_debitUnitReq_volumes; guint32 i_org_csapi_cs_IpChargingSession_debitUnitReq_volumes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_debitUnitReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_debitUnitReq_volumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_debitUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_debitUnitReq_volumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_debitUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_debitUnitReq_volumes); for (i_org_csapi_cs_IpChargingSession_debitUnitReq_volumes=0; i_org_csapi_cs_IpChargingSession_debitUnitReq_volumes < u_octet4_loop_org_csapi_cs_IpChargingSession_debitUnitReq_volumes; i_org_csapi_cs_IpChargingSession_debitUnitReq_volumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } @@ -44806,44 +31585,26 @@ decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_, packet_inf proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_debitUnitReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44852,76 +31613,54 @@ decode_org_csapi_cs_IpChargingSession_debitUnitReq(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters; guint32 i_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditAmountReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters); for (i_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters=0; i_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters < u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters; i_org_csapi_cs_IpChargingSession_directCreditAmountReq_chargingParameters++) { /* Begin struct "org_csapi_cs_TpChargingParameter" */ - decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingParameter" */ } /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditAmountReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -44930,7 +31669,6 @@ decode_org_csapi_cs_IpChargingSession_directCreditAmountReq(tvbuff_t *tvb _U_, p static void decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters; guint32 i_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters; @@ -44938,77 +31676,56 @@ decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *tvb _U_, pac guint32 i_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditUnitReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters); for (i_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters=0; i_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters < u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters; i_org_csapi_cs_IpChargingSession_directCreditUnitReq_chargingParameters++) { /* Begin struct "org_csapi_cs_TpChargingParameter" */ - decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingParameter" */ } u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes); for (i_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes=0; i_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes < u_octet4_loop_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes; i_org_csapi_cs_IpChargingSession_directCreditUnitReq_volumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directCreditUnitReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45017,76 +31734,54 @@ decode_org_csapi_cs_IpChargingSession_directCreditUnitReq(tvbuff_t *tvb _U_, pac static void decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters; guint32 i_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitAmountReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters); for (i_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters=0; i_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters < u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters; i_org_csapi_cs_IpChargingSession_directDebitAmountReq_chargingParameters++) { /* Begin struct "org_csapi_cs_TpChargingParameter" */ - decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingParameter" */ } /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitAmountReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45095,7 +31790,6 @@ decode_org_csapi_cs_IpChargingSession_directDebitAmountReq(tvbuff_t *tvb _U_, pa static void decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters; guint32 i_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters; @@ -45103,77 +31797,56 @@ decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *tvb _U_, pack guint32 i_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitUnitReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters); for (i_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters=0; i_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters < u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters; i_org_csapi_cs_IpChargingSession_directDebitUnitReq_chargingParameters++) { /* Begin struct "org_csapi_cs_TpChargingParameter" */ - decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingParameter" */ } u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes); for (i_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes=0; i_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes < u_octet4_loop_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes; i_org_csapi_cs_IpChargingSession_directDebitUnitReq_volumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_directDebitUnitReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45182,53 +31855,31 @@ decode_org_csapi_cs_IpChargingSession_directDebitUnitReq(tvbuff_t *tvb _U_, pack static void decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_extendLifeTimeReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45237,54 +31888,32 @@ decode_org_csapi_cs_IpChargingSession_extendLifeTimeReq(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_getAmountLeft_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45293,53 +31922,31 @@ decode_org_csapi_cs_IpChargingSession_getAmountLeft(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_getLifeTimeLeft_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_getLifeTimeLeft_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45348,66 +31955,44 @@ decode_org_csapi_cs_IpChargingSession_getLifeTimeLeft(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_getUnitLeft_return; guint32 i_org_csapi_cs_IpChargingSession_getUnitLeft_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_getUnitLeft_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_cs_IpChargingSession_getUnitLeft_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_getUnitLeft_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_getUnitLeft_return); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_getUnitLeft_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_getUnitLeft_return); for (i_org_csapi_cs_IpChargingSession_getUnitLeft_return=0; i_org_csapi_cs_IpChargingSession_getUnitLeft_return < u_octet4_loop_org_csapi_cs_IpChargingSession_getUnitLeft_return; i_org_csapi_cs_IpChargingSession_getUnitLeft_return++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45416,68 +32001,46 @@ decode_org_csapi_cs_IpChargingSession_getUnitLeft(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_rateReq_chargingParameters; guint32 i_org_csapi_cs_IpChargingSession_rateReq_chargingParameters; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_rateReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cs_IpChargingSession_rateReq_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_rateReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_rateReq_chargingParameters); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_rateReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_rateReq_chargingParameters); for (i_org_csapi_cs_IpChargingSession_rateReq_chargingParameters=0; i_org_csapi_cs_IpChargingSession_rateReq_chargingParameters < u_octet4_loop_org_csapi_cs_IpChargingSession_rateReq_chargingParameters; i_org_csapi_cs_IpChargingSession_rateReq_chargingParameters++) { /* Begin struct "org_csapi_cs_TpChargingParameter" */ - decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingParameter" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45486,55 +32049,33 @@ decode_org_csapi_cs_IpChargingSession_rateReq(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_release_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_release_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45543,79 +32084,57 @@ decode_org_csapi_cs_IpChargingSession_release(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters; guint32 i_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveAmountReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters); for (i_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters=0; i_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters < u_octet4_loop_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters; i_org_csapi_cs_IpChargingSession_reserveAmountReq_chargingParameters++) { /* Begin struct "org_csapi_cs_TpChargingParameter" */ - decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingParameter" */ } /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveAmountReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45624,7 +32143,6 @@ decode_org_csapi_cs_IpChargingSession_reserveAmountReq(tvbuff_t *tvb _U_, packet static void decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters; guint32 i_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters; @@ -45632,77 +32150,56 @@ decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _U_, packet_i guint32 i_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveUnitReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cs_TpApplicationDescription" */ - decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpApplicationDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpApplicationDescription" */ u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters); for (i_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters=0; i_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters < u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters; i_org_csapi_cs_IpChargingSession_reserveUnitReq_chargingParameters++) { /* Begin struct "org_csapi_cs_TpChargingParameter" */ - decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingParameter_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingParameter" */ } u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes); for (i_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes=0; i_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes < u_octet4_loop_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes; i_org_csapi_cs_IpChargingSession_reserveUnitReq_volumes++) { /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpVolume" */ } proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingSession_reserveUnitReq_requestNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45711,53 +32208,31 @@ decode_org_csapi_cs_IpChargingSession_reserveUnitReq(tvbuff_t *tvb _U_, packet_i static void decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingManager_sessionAborted_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45766,19 +32241,15 @@ decode_org_csapi_cs_IpAppChargingManager_sessionAborted(tvbuff_t *tvb _U_, packe static void decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet; guint32 i_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet); for (i_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet=0; i_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet < u_octet4_loop_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet; i_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions_chargingSessionSet++) { @@ -45787,44 +32258,26 @@ decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions(tvbuff_t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45833,66 +32286,43 @@ decode_org_csapi_cs_IpAppChargingManager_abortMultipleChargingSessions(tvbuff_t static void decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_IpChargingManager_createChargingSession_sessionDescription"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_IpChargingManager_createChargingSession_sessionDescription); /* Begin struct "org_csapi_cs_TpMerchantAccountID" */ - decode_org_csapi_cs_TpMerchantAccountID_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpMerchantAccountID_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpMerchantAccountID" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_cs_TpCorrelationID" */ - decode_org_csapi_cs_TpCorrelationID_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpCorrelationID_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpCorrelationID" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cs_TpChargingSessionID" */ - decode_org_csapi_cs_TpChargingSessionID_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingSessionID_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingSessionID" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45901,78 +32331,55 @@ decode_org_csapi_cs_IpChargingManager_createChargingSession(tvbuff_t *tvb _U_, p static void decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_cs_IpChargingManager_createSplitChargingSession_users; guint32 i_org_csapi_cs_IpChargingManager_createSplitChargingSession_users; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_IpChargingManager_createSplitChargingSession_sessionDescription"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_IpChargingManager_createSplitChargingSession_sessionDescription); /* Begin struct "org_csapi_cs_TpMerchantAccountID" */ - decode_org_csapi_cs_TpMerchantAccountID_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpMerchantAccountID_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpMerchantAccountID" */ u_octet4_loop_org_csapi_cs_IpChargingManager_createSplitChargingSession_users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingManager_createSplitChargingSession_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingManager_createSplitChargingSession_users); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_IpChargingManager_createSplitChargingSession_users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_IpChargingManager_createSplitChargingSession_users); for (i_org_csapi_cs_IpChargingManager_createSplitChargingSession_users=0; i_org_csapi_cs_IpChargingManager_createSplitChargingSession_users < u_octet4_loop_org_csapi_cs_IpChargingManager_createSplitChargingSession_users; i_org_csapi_cs_IpChargingManager_createSplitChargingSession_users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_cs_TpCorrelationID" */ - decode_org_csapi_cs_TpCorrelationID_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpCorrelationID_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpCorrelationID" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_cs_TpChargingSessionID" */ - decode_org_csapi_cs_TpChargingSessionID_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingSessionID_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingSessionID" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -45981,56 +32388,34 @@ decode_org_csapi_cs_IpChargingManager_createSplitChargingSession(tvbuff_t *tvb _ static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_policy_TpPolicyEvent" */ - decode_org_csapi_policy_TpPolicyEvent_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyEvent_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyEvent" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46039,68 +32424,46 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_reportNotification(tvbuff_t static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables; guint32 i_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables); for (i_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables=0; i_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables < u_octet4_loop_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables; i_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes_outputVariables++) { /* Begin struct "org_csapi_policy_TpPolicyNameValue" */ - decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyNameValue" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46109,55 +32472,33 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyRes(tvbuff_t *tvb static void decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr_error, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46166,7 +32507,6 @@ decode_org_csapi_policy_evaluation_IpAppPolicyDomain_evalPolicyErr(tvbuff_t *tvb static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables; guint32 i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables; @@ -46174,72 +32514,51 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tvbuff_t *tvb guint32 i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_domainName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_domainName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_signatureName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_signatureName); u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables); for (i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables=0; i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables < u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables; i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_inputVariables++) { /* Begin struct "org_csapi_policy_TpPolicyNameValue" */ - decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyNameValue" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return); for (i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return=0; i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return < u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return; i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy_return++) { /* Begin struct "org_csapi_policy_TpPolicyNameValue" */ - decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyNameValue" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46248,73 +32567,50 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicy(tvbuff_t *tvb static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables; guint32 i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_domainName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_domainName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_signatureName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_signatureName); u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables); for (i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables=0; i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables < u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables; i_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_inputVariables++) { /* Begin struct "org_csapi_policy_TpPolicyNameValue" */ - decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyNameValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyNameValue" */ } get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46323,55 +32619,33 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_evalPolicyReq(tvbuff_t *t static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq_domainName); proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46380,70 +32654,48 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_abortEvalPolicyReq(tvbuff static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes; guint32 i_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_domainName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_domainName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_eventDefinitionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_eventDefinitionName); u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes); for (i_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes=0; i_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes < u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes; i_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent_attributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46452,70 +32704,47 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_generateEvent(tvbuff_t *t static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events; guint32 i_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_domainName); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events); for (i_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events=0; i_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events < u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events; i_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_events); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46524,67 +32753,45 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_createNotification(tvbuff static void decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events; guint32 i_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events); for (i_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events=0; i_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events < u_octet4_loop_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events; i_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification_events); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46593,54 +32800,32 @@ decode_org_csapi_policy_evaluation_IpPolicyEvalManager_destroyNotification(tvbuf static void decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicy_getAttribute_attributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicy_getAttribute_attributeName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46649,54 +32834,32 @@ decode_org_csapi_policy_provisioning_IpPolicy_getAttribute(tvbuff_t *tvb _U_, pa static void decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46705,7 +32868,6 @@ decode_org_csapi_policy_provisioning_IpPolicy_setAttribute(tvbuff_t *tvb _U_, pa static void decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames; guint32 i_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames; @@ -46713,67 +32875,46 @@ decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t *tvb _U_, p guint32 i_org_csapi_policy_provisioning_IpPolicy_getAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames); for (i_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames=0; i_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames < u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames; i_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicy_getAttributes_attributeNames); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicy_getAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicy_getAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_return); for (i_org_csapi_policy_provisioning_IpPolicy_getAttributes_return=0; i_org_csapi_policy_provisioning_IpPolicy_getAttributes_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_getAttributes_return; i_org_csapi_policy_provisioning_IpPolicy_getAttributes_return++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46782,66 +32923,44 @@ decode_org_csapi_policy_provisioning_IpPolicy_getAttributes(tvbuff_t *tvb _U_, p static void decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes); for (i_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes=0; i_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes; i_org_csapi_policy_provisioning_IpPolicy_setAttributes_targetAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46850,67 +32969,45 @@ decode_org_csapi_policy_provisioning_IpPolicy_setAttributes(tvbuff_t *tvb _U_, p static void decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyIterator_getList_return; guint32 i_org_csapi_policy_provisioning_IpPolicyIterator_getList_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyIterator_getList_startIndex, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyIterator_getList_numberRequested, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyIterator_getList_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyIterator_getList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyIterator_getList_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyIterator_getList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyIterator_getList_return); for (i_org_csapi_policy_provisioning_IpPolicyIterator_getList_return=0; i_org_csapi_policy_provisioning_IpPolicyIterator_getList_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyIterator_getList_return; i_org_csapi_policy_provisioning_IpPolicyIterator_getList_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyIterator_getList_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyIterator_getList_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46919,52 +33016,29 @@ decode_org_csapi_policy_provisioning_IpPolicyIterator_getList(tvbuff_t *tvb _U_, static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -46973,54 +33047,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getParentRepository(tvbu static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_createRepository_repositoryName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_createRepository_repositoryName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47029,54 +33080,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createRepository(tvbuff_ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_getRepository_repositoryName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_getRepository_repositoryName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47085,53 +33113,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepository(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_removeRepository_repositoryName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_removeRepository_repositoryName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47140,51 +33146,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeRepository(tvbuff_ static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47193,52 +33177,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryCount(tvbuf static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47247,74 +33208,50 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getRepositoryIterator(tv static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionName"); - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionType, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes); for (i_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes=0; i_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes; i_org_csapi_policy_provisioning_IpPolicyRepository_createCondition_conditionAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47323,54 +33260,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createCondition(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_getCondition_conditionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_getCondition_conditionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47379,53 +33293,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getCondition(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_removeCondition_conditionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_removeCondition_conditionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47434,51 +33326,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeCondition(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47487,52 +33357,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionCount(tvbuff static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47541,74 +33388,50 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getConditionIterator(tvb static void decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionName"); - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionType, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes); for (i_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes=0; i_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes; i_org_csapi_policy_provisioning_IpPolicyRepository_createAction_actionAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47617,54 +33440,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_createAction(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_getAction_actionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_getAction_actionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47673,53 +33473,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getAction(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRepository_removeAction_actionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRepository_removeAction_actionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47728,51 +33506,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_removeAction(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRepository_getActionCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47781,52 +33537,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionCount(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47835,52 +33568,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRepository_getActionIterator(tvbuff static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47888,53 +33598,30 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getParentGroup(tvbuff_t *tvb _ */ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) -{ - - +{ switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -47943,74 +33630,50 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getParentDomain(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionName"); - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionType, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes); for (i_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes=0; i_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes; i_org_csapi_policy_provisioning_IpPolicyRule_createCondition_conditionAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48019,54 +33682,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_createCondition(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRule_getCondition_conditionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRule_getCondition_conditionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48075,53 +33715,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getCondition(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRule_removeCondition_conditionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRule_removeCondition_conditionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48130,51 +33748,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_removeCondition(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48183,52 +33779,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionCount(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48237,74 +33810,50 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionIterator(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRule_createAction_actionName"); - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionType, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes); for (i_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes=0; i_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes; i_org_csapi_policy_provisioning_IpPolicyRule_createAction_actionAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48313,54 +33862,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_createAction(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRule_getAction_actionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRule_getAction_actionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48369,53 +33895,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getAction(tvbuff_t *tvb _U_, p static void decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRule_removeAction_actionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRule_removeAction_actionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48424,51 +33928,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_removeAction(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_getActionCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48477,52 +33959,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionCount(tvbuff_t *tvb _ static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48531,53 +33990,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionIterator(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByName(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByName_conditionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByName_conditionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48586,54 +34023,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodConditionByNa static void decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48642,52 +34056,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setValidityPeriodCondition(tvb static void decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48696,51 +34087,29 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getValidityPeriodCondition(tvb static void decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48749,66 +34118,44 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_unsetValidityPeriodCondition(t static void decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList; guint32 i_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList); for (i_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList=0; i_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList; i_org_csapi_policy_provisioning_IpPolicyRule_setConditionList_conditionList++) { /* Begin struct "org_csapi_policy_TpPolicyConditionListElement" */ - decode_org_csapi_policy_TpPolicyConditionListElement_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyConditionListElement_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyConditionListElement" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48817,64 +34164,42 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setConditionList(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return; guint32 i_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return); for (i_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return=0; i_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return; i_org_csapi_policy_provisioning_IpPolicyRule_getConditionList_return++) { /* Begin struct "org_csapi_policy_TpPolicyConditionListElement" */ - decode_org_csapi_policy_TpPolicyConditionListElement_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyConditionListElement_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyConditionListElement" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48883,66 +34208,44 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getConditionList(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList; guint32 i_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList); for (i_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList=0; i_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList; i_org_csapi_policy_provisioning_IpPolicyRule_setActionList_actionList++) { /* Begin struct "org_csapi_policy_TpPolicyActionListElement" */ - decode_org_csapi_policy_TpPolicyActionListElement_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyActionListElement_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyActionListElement" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -48951,64 +34254,42 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_setActionList(tvbuff_t *tvb _U static void decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return; guint32 i_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return); for (i_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return=0; i_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return; i_org_csapi_policy_provisioning_IpPolicyRule_getActionList_return++) { /* Begin struct "org_csapi_policy_TpPolicyActionListElement" */ - decode_org_csapi_policy_TpPolicyActionListElement_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyActionListElement_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyActionListElement" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49017,54 +34298,31 @@ decode_org_csapi_policy_provisioning_IpPolicyRule_getActionList(tvbuff_t *tvb _U static void decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyManager_createDomain_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyManager_createDomain_domainName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49073,54 +34331,31 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_createDomain(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyManager_getDomain_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyManager_getDomain_domainName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49129,53 +34364,31 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomain(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyManager_removeDomain_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyManager_removeDomain_domainName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49184,51 +34397,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_removeDomain(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49237,52 +34428,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainCount(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49291,7 +34459,6 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getDomainIterator(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes; @@ -49299,67 +34466,46 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains(tvbuff_ guint32 i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes); for (i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes=0; i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes; i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_matchingAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return); for (i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return=0; i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return; i_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49368,54 +34514,31 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_findMatchingDomains(tvbuff_ static void decode_org_csapi_policy_provisioning_IpPolicyManager_createRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyManager_createRepository_repositoryName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyManager_createRepository_repositoryName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49424,54 +34547,31 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_createRepository(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyManager_getRepository_repositoryName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyManager_getRepository_repositoryName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49480,53 +34580,31 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepository(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyManager_removeRepository_repositoryName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyManager_removeRepository_repositoryName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49535,51 +34613,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_removeRepository(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49588,52 +34644,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryCount(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49642,51 +34675,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_getRepositoryIterator(tvbuf static void decode_org_csapi_policy_provisioning_IpPolicyManager_startTransaction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49695,51 +34706,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_startTransaction(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransaction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_policy_provisioning_IpPolicyManager_commitTransaction_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49748,51 +34737,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_commitTransaction(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransaction(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49801,52 +34768,29 @@ decode_org_csapi_policy_provisioning_IpPolicyManager_abortTransaction(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49855,52 +34799,29 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentDomain(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49909,54 +34830,31 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getParentGroup(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyGroup_createGroup_groupName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyGroup_createGroup_groupName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -49965,54 +34863,31 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_createGroup(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyGroup_getGroup_groupName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyGroup_getGroup_groupName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50021,53 +34896,31 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroup(tvbuff_t *tvb _U_, p static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyGroup_removeGroup_groupName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup_groupName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50076,51 +34929,29 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_removeGroup(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50129,52 +34960,29 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupCount(tvbuff_t *tvb _ static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50183,54 +34991,31 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getGroupIterator(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyGroup_createRule_ruleName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyGroup_createRule_ruleName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50239,54 +35024,31 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_createRule(tvbuff_t *tvb _U_, static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyGroup_getRule_ruleName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyGroup_getRule_ruleName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50295,53 +35057,31 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRule(tvbuff_t *tvb _U_, pa static void decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyGroup_removeRule_ruleName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyGroup_removeRule_ruleName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50350,51 +35090,29 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_removeRule(tvbuff_t *tvb _U_, static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50403,52 +35121,29 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleCount(tvbuff_t *tvb _U static void decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50457,66 +35152,44 @@ decode_org_csapi_policy_provisioning_IpPolicyGroup_getRuleIterator(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes); for (i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes=0; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttributes_requiredAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50525,66 +35198,44 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setRequiredAttribut static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes); for (i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes=0; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttributes_optionalAttributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50593,64 +35244,42 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_setOptionalAttribut static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return; guint32 i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return); for (i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return=0; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttributes_return++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50659,64 +35288,42 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getRequiredAttribut static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return; guint32 i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return); for (i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return=0; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return; i_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttributes_return++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50725,52 +35332,29 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getOptionalAttribut static void decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50779,52 +35363,29 @@ decode_org_csapi_policy_provisioning_IpPolicyEventDefinition_getParentDomain(tvb static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50833,52 +35394,29 @@ decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRepository(tvbuf static void decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50887,52 +35425,29 @@ decode_org_csapi_policy_provisioning_IpPolicyCondition_getParentRule(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRepository(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50941,52 +35456,29 @@ decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRepository(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -50995,65 +35487,43 @@ decode_org_csapi_policy_provisioning_IpPolicyAction_getParentRule(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables); for (i_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables=0; i_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables; i_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables_inputVariables); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51062,65 +35532,43 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setInputVariables(tvbuff_ static void decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables); for (i_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables=0; i_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables; i_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables_outputVariables); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51129,63 +35577,41 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setOutputVariables(tvbuff static void decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return); for (i_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return=0; i_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return; i_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51194,63 +35620,41 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getInputVariables(tvbuff_ static void decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return); for (i_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return=0; i_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return; i_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51259,65 +35663,43 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getOutputVariables(tvbuff static void decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames); for (i_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames=0; i_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames; i_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames_groupNames); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51326,65 +35708,43 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setGroupNames(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames); for (i_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames=0; i_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames; i_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles_roleNames); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51393,63 +35753,41 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_setPolicyRoles(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return); for (i_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return=0; i_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return; i_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51458,63 +35796,41 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getGroupNames(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return; guint32 i_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return); for (i_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return=0; i_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return; i_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51523,52 +35839,29 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getPolicyRoles(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51577,52 +35870,29 @@ decode_org_csapi_policy_provisioning_IpPolicySignature_getParentDomain(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51631,54 +35901,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getParentDomain(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createDomain_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createDomain_domainName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51687,54 +35934,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createDomain(tvbuff_t *tvb _ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getDomain_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getDomain_domainName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51743,53 +35967,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomain(tvbuff_t *tvb _U_, static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeDomain_domainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain_domainName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51798,51 +36000,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeDomain(tvbuff_t *tvb _ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51851,52 +36031,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainCount(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51905,54 +36062,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getDomainIterator(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createGroup_groupName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createGroup_groupName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -51961,54 +36095,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createGroup(tvbuff_t *tvb _U static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getGroup_groupName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getGroup_groupName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52017,53 +36128,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroup(tvbuff_t *tvb _U_, static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeGroup_groupName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup_groupName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52072,51 +36161,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeGroup(tvbuff_t *tvb _U static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52125,52 +36192,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupCount(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52179,54 +36223,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getGroupIterator(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createRule_ruleName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createRule_ruleName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52235,54 +36256,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createRule(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getRule_ruleName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getRule_ruleName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52291,53 +36289,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRule(tvbuff_t *tvb _U_, p static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeRule_ruleName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeRule_ruleName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52346,51 +36322,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeRule(tvbuff_t *tvb _U_ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52399,52 +36353,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleCount(tvbuff_t *tvb _ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52453,7 +36384,6 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getRuleIterator(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes; guint32 i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes; @@ -52461,71 +36391,49 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition(tvbuff guint32 i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_eventDefinitionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_eventDefinitionName); u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes); for (i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes=0; i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes; i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_requiredAttributes); } u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes); for (i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes=0; i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes; i_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition_optionalAttributes); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52534,54 +36442,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createEventDefinition(tvbuff static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition_eventDefinitionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition_eventDefinitionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52590,53 +36475,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinition(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition_eventDefinitionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition_eventDefinitionName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52645,51 +36508,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeEventDefinition(tvbuff static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52698,52 +36539,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionCount(tvbu static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52752,53 +36570,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getEventDefinitionIterator(t static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet_variableSetName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet_variableSetName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52807,66 +36603,44 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariableSet(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return; guint32 i_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_variableSetName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_variableSetName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return); for (i_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return=0; i_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return < u_octet4_loop_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return; i_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet_return++) { /* Begin struct "org_csapi_policy_TpPolicyVar" */ - decode_org_csapi_policy_TpPolicyVar_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyVar_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyVar" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52875,53 +36649,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSet(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet_variableSetName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet_variableSetName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52930,51 +36682,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariableSet(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -52983,52 +36713,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetCount(tvbuff_t static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53037,15 +36744,11 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableSetIterator(tvbuf static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createVariable_variableSetName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createVariable_variableSetName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createVariable_variableName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createVariable_variableName); /* Begin union "org_csapi_policy_TpPolicyType" */ @@ -53053,44 +36756,26 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(tvbuff_t *tvb /* End union "org_csapi_policy_TpPolicyType" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53099,57 +36784,35 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createVariable(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue_variableSetName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue_variableSetName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue_variableName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue_variableName); - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53158,58 +36821,36 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_setVariableValue(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType_variableSetName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getVariableType_variableSetName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getVariableType_variableName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType_variableName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin union "org_csapi_policy_TpPolicyType" */ decode_org_csapi_policy_TpPolicyType_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_policy_TpPolicyType" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53218,55 +36859,33 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableType(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue_variableSetName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue_variableSetName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue_variableName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue_variableName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53275,56 +36894,34 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariableValue(tvbuff_t *t static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariable_variableSetName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getVariable_variableSetName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getVariable_variableName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getVariable_variableName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_policy_TpPolicyVar" */ - decode_org_csapi_policy_TpPolicyVar_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyVar_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyVar" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53333,55 +36930,33 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getVariable(tvbuff_t *tvb _U static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable_variablSetName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeVariable_variablSetName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeVariable_variableName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable_variableName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53390,54 +36965,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeVariable(tvbuff_t *tvb static void decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_createSignature_signatureName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_createSignature_signatureName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53446,54 +36998,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_createSignature(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_getSignature_signatureName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_getSignature_signatureName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53502,53 +37031,31 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignature(tvbuff_t *tvb _ static void decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_provisioning_IpPolicyDomain_removeSignature_signatureName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature_signatureName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53557,51 +37064,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_removeSignature(tvbuff_t *tv static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53610,52 +37095,29 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureCount(tvbuff_t * static void decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53664,7 +37126,6 @@ decode_org_csapi_policy_provisioning_IpPolicyDomain_getSignatureIterator(tvbuff_ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes; @@ -53672,24 +37133,21 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvbuff_ guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_identityTypes); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity_authToken++) { @@ -53698,44 +37156,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvbuff_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53744,21 +37184,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createIdentity(tvbuff_ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity_authToken++) { @@ -53767,44 +37203,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity(tvbuff_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53813,21 +37231,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteIdentity(tvbuff_ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_authToken++) { @@ -53836,44 +37250,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity(tvbuff_t *t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53882,7 +37278,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isIdentity(tvbuff_t *t static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes; @@ -53890,24 +37285,21 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tv guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_identityTypes); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity_authToken++) { @@ -53916,44 +37308,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -53962,21 +37336,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_createGroupIdentity(tv static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity_authToken++) { @@ -53985,44 +37355,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54031,23 +37383,19 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_deleteGroupIdentity(tv static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_group); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_group"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_member"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_member); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup_authToken++) { @@ -54056,44 +37404,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup(tvbuff_t *t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54102,23 +37432,19 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addToGroup(tvbuff_t *t static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_group); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_group"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup_authToken++) { @@ -54127,44 +37453,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54173,7 +37481,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeFromGroup(tvbuff static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken; @@ -54181,15 +37488,12 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvbuff_t * guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_authToken++) { @@ -54198,51 +37502,33 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvbuff_t * } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54251,21 +37537,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listMembers(tvbuff_t * static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_authToken++) { @@ -54274,44 +37556,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54320,7 +37584,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_isGroupIdentity(tvbuff static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken; @@ -54328,15 +37591,12 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tv guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_authToken++) { @@ -54345,51 +37605,33 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54398,23 +37640,19 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listGroupMembership(tv static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_alias"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_alias); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias_authToken++) { @@ -54423,44 +37661,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(tvbuff_t *tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54469,23 +37689,19 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_addAlias(tvbuff_t *tvb static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_alias"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_alias); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases_authToken++) { @@ -54494,44 +37710,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases(tvbuff_t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54540,7 +37738,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_removeAliases(tvbuff_t static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken; @@ -54548,15 +37745,12 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvbuff_t * guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_authToken++) { @@ -54565,51 +37759,33 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvbuff_t * } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54618,21 +37794,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listAliases(tvbuff_t * static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_alias"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_alias); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_authToken++) { @@ -54641,44 +37813,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias(tvbuff_t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias_return); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54687,7 +37841,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_lookupByAlias(tvbuff_t static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes; @@ -54695,24 +37848,21 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvbuff_ guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_identityTypes); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes_authToken++) { @@ -54721,44 +37871,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvbuff_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54767,7 +37899,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_associateTypes(tvbuff_ static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes; @@ -54775,24 +37906,21 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvbu guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_identityTypes); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes_authToken++) { @@ -54801,44 +37929,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvbu } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54847,7 +37957,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_disassociateTypes(tvbu static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken; @@ -54855,15 +37964,12 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tv guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_authToken++) { @@ -54872,51 +37978,33 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54925,23 +38013,19 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_listTypesOfIdentity(tv static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_authToken++) { @@ -54950,44 +38034,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tvbuff_t *tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -54996,7 +38062,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_hasType(tvbuff_t *tvb static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames; @@ -55006,26 +38071,23 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes( guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_identityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_identityType); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_authToken++) { @@ -55034,52 +38096,34 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes( } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes_return++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55088,7 +38132,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_getIdentityAttributes( static void decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes; @@ -55096,27 +38139,24 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes( guint32 i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_identityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_identityType); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_attributes++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes_authToken++) { @@ -55125,44 +38165,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes( } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55171,7 +38193,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityManagement_setIdentityAttributes( static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes; @@ -55179,24 +38200,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvbuff_t *tvb guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes; i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_agentTypes); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent_authToken++) { @@ -55205,44 +38223,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvbuff_t *tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55251,21 +38251,17 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_createAgent(tvbuff_t *tvb static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent_authToken++) { @@ -55274,44 +38270,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(tvbuff_t *tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55320,21 +38298,17 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_deleteAgent(tvbuff_t *tvb static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_authToken++) { @@ -55343,44 +38317,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuff_t *tvb _U_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55389,7 +38345,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isAgent(tvbuff_t *tvb _U_ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities; @@ -55397,24 +38352,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvbuff guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities; i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_capabilities); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities_authToken++) { @@ -55423,44 +38375,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55469,7 +38403,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_enableCapabilities(tvbuff static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities; @@ -55477,24 +38410,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvbuf guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_capabilities); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities_authToken++) { @@ -55503,44 +38433,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvbuf } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55549,7 +38461,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disableCapabilities(tvbuf static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken; @@ -55557,15 +38468,12 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(t guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_authToken++) { @@ -55574,51 +38482,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55627,7 +38517,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listEnabledCapabilities(t static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken; @@ -55635,15 +38524,12 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvbuf guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_authToken++) { @@ -55652,51 +38538,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvbuf } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55705,23 +38573,19 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listAllCapabilities(tvbuf static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_agentName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_agentName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_capability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_capability); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_authToken++) { @@ -55730,44 +38594,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(tvbuff_t *tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55776,7 +38622,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_isCapableOf(tvbuff_t *tvb static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes; @@ -55784,24 +38629,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvbuff_t * guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes; i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_agentTypes); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes_authToken++) { @@ -55810,44 +38652,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvbuff_t * } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55856,7 +38680,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_associateTypes(tvbuff_t * static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes; @@ -55864,24 +38687,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvbuff_ guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_agentTypes); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes_authToken++) { @@ -55890,44 +38710,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvbuff_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -55936,7 +38738,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_disassociateTypes(tvbuff_ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken; @@ -55944,15 +38745,12 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvbuff_t guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_authToken++) { @@ -55961,51 +38759,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvbuff_t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return; i_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56014,23 +38794,19 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_listTypesOfAgent(tvbuff_t static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_agentName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_agentName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_authToken++) { @@ -56039,44 +38815,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuff_t *tvb _U_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56085,7 +38843,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_hasType(tvbuff_t *tvb _U_ static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames; @@ -56095,26 +38852,23 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvbuff guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_agentName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_agentName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_agentType); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_authToken++) { @@ -56123,52 +38877,34 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return; i_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes_return++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56177,7 +38913,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_getAgentAttributes(tvbuff static void decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes; guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes; @@ -56185,27 +38920,24 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvbuff guint32 i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_agentName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_agentName"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_agentType); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes; i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_attributes++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes_authToken++) { @@ -56214,44 +38946,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56260,23 +38974,19 @@ decode_org_csapi_pam_provisioning_IpPAMAgentManagement_setAgentAttributes(tvbuff static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent_authToken++) { @@ -56285,44 +38995,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(tvbuff_t *tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56331,23 +39023,19 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_assignAgent(tvbuff_t *tvb static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent_authToken++) { @@ -56356,44 +39044,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent(tvbuff_t *t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56402,7 +39072,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_unassignAgent(tvbuff_t *t static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken; @@ -56410,15 +39079,12 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvbuff guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_authToken++) { @@ -56427,51 +39093,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56480,7 +39128,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgents(tvbuff static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken; @@ -56488,15 +39135,12 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesO guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_agentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_agentName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_authToken++) { @@ -56505,51 +39149,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesO } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesOfAgent_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56558,7 +39184,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssociatedIdentitiesO static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken; @@ -56566,17 +39191,14 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapab guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_capability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_capability); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_authToken++) { @@ -56585,51 +39207,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapab } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapability_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56638,7 +39242,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listAssignedAgentsByCapab static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken; @@ -56646,15 +39249,12 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentit guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_authToken++) { @@ -56663,51 +39263,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentit } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentity_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56716,23 +39298,19 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_listCapabilitiesOfIdentit static void decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_capability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_capability); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken; i_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_authToken++) { @@ -56741,44 +39319,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf(tvbuf } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56787,22 +39347,18 @@ decode_org_csapi_pam_provisioning_IpPAMAgentAssignment_isIdentityCapableOf(tvbuf static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_pam_TpPAMAttributeDef" */ - decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttributeDef" */ u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttribute_authToken++) { @@ -56811,44 +39367,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttr } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56857,21 +39395,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityAttr static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_attributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_attributeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttribute_authToken++) { @@ -56880,44 +39414,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttr } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56926,21 +39442,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityAttr static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_attributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_attributeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttributeDefinition_authToken++) { @@ -56949,45 +39461,27 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttribu } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_pam_TpPAMAttributeDef" */ - decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttributeDef" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -56996,7 +39490,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_getIdentityAttribu static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken; @@ -57004,13 +39497,10 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAtt guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_authToken++) { @@ -57019,51 +39509,33 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAtt } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAttributes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57072,7 +39544,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listAllIdentityAtt static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames; @@ -57080,24 +39551,21 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType_authToken++) { @@ -57106,44 +39574,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57152,21 +39602,17 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_createIdentityType static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType_authToken++) { @@ -57175,44 +39621,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57221,7 +39649,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_deleteIdentityType static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken; @@ -57229,13 +39656,10 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes( guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_authToken++) { @@ -57244,51 +39668,33 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes( } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57297,7 +39703,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypes( static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames; @@ -57305,24 +39710,21 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAtt guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAttributes_authToken++) { @@ -57331,44 +39733,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAtt } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57377,7 +39761,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_addIdentityTypeAtt static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames; @@ -57385,24 +39768,21 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityType guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityTypeAttributes_authToken++) { @@ -57411,44 +39791,26 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityType } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57457,7 +39819,6 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_removeIdentityType static void decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken; @@ -57465,15 +39826,12 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAt guint32 i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_authToken++) { @@ -57482,51 +39840,33 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAt } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return; i_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAttributes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57535,22 +39875,18 @@ decode_org_csapi_pam_provisioning_IpPAMIdentityTypeManagement_listIdentityTypeAt static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_pam_TpPAMAttributeDef" */ - decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttributeDef" */ u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute_authToken++) { @@ -57559,44 +39895,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute( } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57605,21 +39923,17 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentAttribute( static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_attributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_attributeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute_authToken++) { @@ -57628,44 +39942,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute( } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57674,21 +39970,17 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentAttribute( static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_attributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_attributeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefinition_authToken++) { @@ -57697,45 +39989,27 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefi } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_pam_TpPAMAttributeDef" */ - decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttributeDef" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57744,7 +40018,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_getAgentAttributeDefi static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken; @@ -57752,13 +40025,10 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttribute guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_authToken++) { @@ -57767,51 +40037,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttribute } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttributes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57820,7 +40072,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAllAgentAttribute static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames; @@ -57828,24 +40079,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvbuf guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType_authToken++) { @@ -57854,44 +40102,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvbuf } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57900,21 +40130,17 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_createAgentType(tvbuf static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType_authToken++) { @@ -57923,44 +40149,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType(tvbuf } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -57969,7 +40177,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_deleteAgentType(tvbuf static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken; @@ -57977,13 +40184,10 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvbuff guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_authToken++) { @@ -57992,51 +40196,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58045,7 +40231,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypes(tvbuff static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames; @@ -58053,24 +40238,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttribute guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttributes_authToken++) { @@ -58079,44 +40261,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttribute } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58125,7 +40289,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_addAgentTypeAttribute static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames; @@ -58133,24 +40296,21 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttrib guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttributes_authToken++) { @@ -58159,44 +40319,26 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttrib } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58205,7 +40347,6 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_removeAgentTypeAttrib static void decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken; @@ -58213,15 +40354,12 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttribut guint32 i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_typeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_typeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_authToken++) { @@ -58230,51 +40368,33 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttribut } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return; i_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttributes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58283,22 +40403,18 @@ decode_org_csapi_pam_provisioning_IpPAMAgentTypeManagement_listAgentTypeAttribut static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_pam_TpPAMAttributeDef" */ - decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttributeDef" */ u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttribute_authToken++) { @@ -58307,44 +40423,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttr } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58353,21 +40451,17 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapabilityAttr static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_attributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_attributeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttribute_authToken++) { @@ -58376,44 +40470,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttr } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58422,21 +40498,17 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapabilityAttr static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_attributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_attributeName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttributeDefinition_authToken++) { @@ -58445,45 +40517,27 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttribu } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_pam_TpPAMAttributeDef" */ - decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttributeDef_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttributeDef" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58492,7 +40546,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_getCapabilityAttribu static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken; @@ -58500,13 +40553,10 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAtt guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_authToken++) { @@ -58515,51 +40565,33 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAtt } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAttributes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58568,7 +40600,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listAllCapabilityAtt static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames; @@ -58576,24 +40607,21 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvb guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_capabilityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_capabilityName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability_authToken++) { @@ -58602,44 +40630,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58648,21 +40658,17 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_createCapability(tvb static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_capabilityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_capabilityName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability_authToken++) { @@ -58671,44 +40677,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability(tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58717,7 +40705,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_deleteCapability(tvb static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken; @@ -58725,13 +40712,10 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvb guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_authToken++) { @@ -58740,51 +40724,33 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58793,7 +40759,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilities(tvb static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames; @@ -58801,24 +40766,21 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttribu guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_capabilityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_capabilityName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttributes_authToken++) { @@ -58827,44 +40789,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttribu } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58873,7 +40817,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_addCapabilityAttribu static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames; @@ -58881,24 +40824,21 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttr guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_capabilityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_capabilityName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_attributeNames); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttributes_authToken++) { @@ -58907,44 +40847,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttr } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -58953,7 +40875,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_removeCapabilityAttr static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken; @@ -58961,15 +40882,12 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttrib guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_capabilityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_capabilityName); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_authToken++) { @@ -58978,51 +40896,33 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttrib } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttributes_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59031,7 +40931,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilityAttrib static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities; @@ -59039,24 +40938,21 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesTo guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_agentType); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_capabilities); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesToType_authToken++) { @@ -59065,44 +40961,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesTo } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59111,7 +40989,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_assignCapabilitiesTo static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities; @@ -59119,24 +40996,21 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilities guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_agentType); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_capabilities); } u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilitiesFromType_authToken++) { @@ -59145,44 +41019,26 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilities } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59191,7 +41047,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_unassignCapabilities static void decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken; @@ -59199,15 +41054,12 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfTy guint32 i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_agentType); u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_authToken++) { @@ -59216,51 +41068,33 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfTy } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return); for (i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return=0; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return; i_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfType_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59269,7 +41103,6 @@ decode_org_csapi_pam_provisioning_IpPAMCapabilityManagement_listCapabilitiesOfTy static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData; guint32 i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData; @@ -59277,31 +41110,24 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvbuff_t guint32 i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData); for (i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData=0; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData < u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_askerData++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return); for (i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return=0; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return < u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken_return++) { @@ -59310,34 +41136,20 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvbuff_t } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59346,54 +41158,31 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAuthToken(tvbuff_t static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface_interfaceName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface_interfaceName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59402,21 +41191,17 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_obtainInterface(tvbuf static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_identity); u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken); for (i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken=0; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl_authToken++) { @@ -59425,45 +41210,27 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl(tvbu } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_pam_TpPAMAccessControlData" */ - decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAccessControlData" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - - break; - - - } /* switch(header->message_type) */ + break; + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59472,26 +41239,22 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_getAccessControl(tvbu static void decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken; guint32 i_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_operation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_operation); /* Begin struct "org_csapi_pam_TpPAMAccessControlData" */ - decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAccessControlData" */ u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken); for (i_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken=0; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken < u_octet4_loop_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken; i_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl_authToken++) { @@ -59500,44 +41263,26 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl(tvbu } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59546,7 +41291,6 @@ decode_org_csapi_pam_provisioning_IpPAMProvisioningManager_setAccessControl(tvbu static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes; guint32 i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes; @@ -59554,27 +41298,24 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvbuff_t * guint32 i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_identityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_identityType); u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes); for (i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes=0; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes < u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_attributes++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken); for (i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken=0; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence_authToken++) { @@ -59583,44 +41324,26 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvbuff_t * } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59629,7 +41352,6 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresence(tvbuff_t * static void decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames; guint32 i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames; @@ -59637,28 +41359,25 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration( guint32 i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_identityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_identityType); u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames); for (i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames=0; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames < u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_attributeNames); } proto_tree_add_uint64(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_expiresIn, tvb, *offset-8, 8, get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken); for (i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken=0; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken; i_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration_authToken++) { @@ -59667,44 +41386,26 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration( } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59713,7 +41414,6 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_setIdentityPresenceExpiration( static void decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames; guint32 i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames; @@ -59723,26 +41423,23 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvbuff_t * guint32 i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_identityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_identityType); u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames); for (i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames=0; i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames < u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames; i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_attributeNames); } u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken); for (i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken=0; i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken; i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_authToken++) { @@ -59751,52 +41448,34 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvbuff_t * } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return); for (i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return=0; i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return < u_octet4_loop_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return; i_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence_return++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59805,7 +41484,6 @@ decode_org_csapi_pam_access_IpPAMIdentityPresence_getIdentityPresence(tvbuff_t * static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes; guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes; @@ -59813,27 +41491,24 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbuff_t *tvb _U guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_agent); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_agent"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_agentType); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes); for (i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes=0; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_attributes++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken); for (i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken=0; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence_authToken++) { @@ -59842,44 +41517,26 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbuff_t *tvb _U } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59888,7 +41545,6 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresence(tvbuff_t *tvb _U static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes; guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes; @@ -59896,27 +41552,24 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvbuff_t *t guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_agent); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_agent"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_capability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_capability); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes); for (i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes=0; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_attributes++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken); for (i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken=0; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence_authToken++) { @@ -59925,44 +41578,26 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvbuff_t *t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -59971,7 +41606,6 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresence(tvbuff_t *t static void decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames; guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames; @@ -59979,28 +41613,25 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvbuff guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_agent); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_agent"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_agentType); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames); for (i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames=0; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_attributeNames); } proto_tree_add_uint64(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_expiresIn, tvb, *offset-8, 8, get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken); for (i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken=0; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken; i_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration_authToken++) { @@ -60009,44 +41640,26 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvbuff } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60055,7 +41668,6 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setAgentPresenceExpiration(tvbuff static void decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames; guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames; @@ -60063,28 +41675,25 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(t guint32 i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_agent); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_agent"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_capability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_capability); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames); for (i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames=0; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_attributeNames); } proto_tree_add_uint64(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_expiresIn, tvb, *offset-8, 8, get_CDR_long_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken); for (i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken=0; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken; i_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration_authToken++) { @@ -60093,44 +41702,26 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60139,7 +41730,6 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_setCapabilityPresenceExpiration(t static void decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames; guint32 i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames; @@ -60149,26 +41739,23 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbuff_t *tvb _U guint32 i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_agent); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_agent"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_agentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_agentType); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames); for (i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames=0; i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames; i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_attributeNames); } u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken); for (i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken=0; i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken; i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_authToken++) { @@ -60177,52 +41764,34 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbuff_t *tvb _U } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return); for (i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return=0; i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return; i_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence_return++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60231,7 +41800,6 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getAgentPresence(tvbuff_t *tvb _U static void decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames; guint32 i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames; @@ -60241,26 +41809,23 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvbuff_t *t guint32 i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_agent); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_agent"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_capability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_capability); u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames); for (i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames=0; i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames; i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_attributeNames); } u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken); for (i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken=0; i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken; i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_authToken++) { @@ -60269,52 +41834,34 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvbuff_t *t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return); for (i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return=0; i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return < u_octet4_loop_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return; i_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence_return++) { /* Begin struct "org_csapi_pam_TpPAMAttribute" */ - decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAttribute" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60323,7 +41870,6 @@ decode_org_csapi_pam_access_IpPAMAgentPresence_getCapabilityPresence(tvbuff_t *t static void decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames; guint32 i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames; @@ -60333,27 +41879,24 @@ decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvbuff_t guint32 i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_identity); /* Begin struct "org_csapi_pam_TpPAMContext" */ - decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMContext" */ u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames); for (i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames=0; i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames < u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames; i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_attributeNames); } u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken); for (i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken=0; i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken < u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken; i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_authToken++) { @@ -60362,52 +41905,34 @@ decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvbuff_t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return); for (i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return=0; i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return < u_octet4_loop_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return; i_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability_return++) { /* Begin struct "org_csapi_pam_TpPAMAvailabilityProfile" */ - decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAvailabilityProfile" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60416,7 +41941,6 @@ decode_org_csapi_pam_access_IpAppPAMPreferenceCheck_computeAvailability(tvbuff_t static void decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames; guint32 i_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames; @@ -60426,27 +41950,24 @@ decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff_t *tvb _U_, guint32 i_org_csapi_pam_access_IpPAMAvailability_getAvailability_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAvailability_getAvailability_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_identity); /* Begin struct "org_csapi_pam_TpPAMContext" */ - decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMContext" */ u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames); for (i_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames=0; i_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames < u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames; i_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_attributeNames); } u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken); for (i_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken=0; i_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken; i_org_csapi_pam_access_IpPAMAvailability_getAvailability_authToken++) { @@ -60455,52 +41976,34 @@ decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getAvailability_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_return); for (i_org_csapi_pam_access_IpPAMAvailability_getAvailability_return=0; i_org_csapi_pam_access_IpPAMAvailability_getAvailability_return < u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getAvailability_return; i_org_csapi_pam_access_IpPAMAvailability_getAvailability_return++) { /* Begin struct "org_csapi_pam_TpPAMAvailabilityProfile" */ - decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAvailabilityProfile" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60509,24 +42012,20 @@ decode_org_csapi_pam_access_IpPAMAvailability_getAvailability(tvbuff_t *tvb _U_, static void decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken; guint32 i_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAvailability_getPreference_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAvailability_getPreference_identity); /* Begin struct "org_csapi_pam_TpPAMContext" */ - decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMContext" */ u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken); for (i_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken=0; i_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken; i_org_csapi_pam_access_IpPAMAvailability_getPreference_authToken++) { @@ -60535,47 +42034,29 @@ decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t *tvb _U_, p } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin union "org_csapi_pam_TpPAMPreferenceData" */ decode_org_csapi_pam_TpPAMPreferenceData_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_pam_TpPAMPreferenceData" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60584,23 +42065,19 @@ decode_org_csapi_pam_access_IpPAMAvailability_getPreference(tvbuff_t *tvb _U_, p static void decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken; guint32 i_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAvailability_setPreference_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAvailability_setPreference_identity); /* Begin struct "org_csapi_pam_TpPAMContext" */ - decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMContext" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMAvailability_setPreference_operation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMAvailability_setPreference_operation); /* Begin union "org_csapi_pam_TpPAMPreferenceData" */ @@ -60608,7 +42085,7 @@ decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t *tvb _U_, p /* End union "org_csapi_pam_TpPAMPreferenceData" */ u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken); for (i_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken=0; i_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken; i_org_csapi_pam_access_IpPAMAvailability_setPreference_authToken++) { @@ -60617,44 +42094,26 @@ decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t *tvb _U_, p } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60663,7 +42122,6 @@ decode_org_csapi_pam_access_IpPAMAvailability_setPreference(tvbuff_t *tvb _U_, p static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData; guint32 i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData; @@ -60671,31 +42129,24 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvbuff guint32 i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData); for (i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData=0; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData < u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_askerData++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return); for (i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return=0; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return < u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken_return++) { @@ -60704,34 +42155,20 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvbuff } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60740,54 +42177,31 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAuthToken(tvbuff static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface_interfaceName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface_interfaceName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60796,21 +42210,17 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_obtainInterface(tvb static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken; guint32 i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_identity); u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken); for (i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken=0; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl_authToken++) { @@ -60819,45 +42229,27 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_pam_TpPAMAccessControlData" */ - decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAccessControlData" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60866,26 +42258,22 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_getAccessControl(tv static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken; guint32 i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_operation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_operation); /* Begin struct "org_csapi_pam_TpPAMAccessControlData" */ - decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAccessControlData" */ u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken); for (i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken=0; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl_authToken++) { @@ -60894,44 +42282,26 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -60940,21 +42310,17 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_setAccessControl(tv static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken; guint32 i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_identity); u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken); for (i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken=0; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService_authToken++) { @@ -60963,44 +42329,26 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService(tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61009,21 +42357,17 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_activateService(tvb static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken; guint32 i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_identity); u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken); for (i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken=0; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService_authToken++) { @@ -61032,44 +42376,26 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService(t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61078,21 +42404,17 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_deactivateService(t static void decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken; guint32 i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_identity); u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken); for (i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken=0; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken < u_octet4_loop_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken; i_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_authToken++) { @@ -61101,44 +42423,26 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity(tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61147,21 +42451,17 @@ decode_org_csapi_pam_access_IpPAMPresenceAvailabilityManager_isActiveIdentity(tv static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo; guint32 i_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo); for (i_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo=0; i_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo < u_octet4_loop_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo; i_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify_eventInfo++) { @@ -61173,44 +42473,26 @@ decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t *tvb _U_, p } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61219,56 +42501,34 @@ decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotify(tvbuff_t *tvb _U_, p static void decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr_eventID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_pam_TpPAMErrorInfo" */ - decode_org_csapi_pam_TpPAMErrorInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMErrorInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMErrorInfo" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61277,21 +42537,17 @@ decode_org_csapi_pam_event_IpAppPAMEventHandler_eventNotifyErr(tvbuff_t *tvb _U_ static void decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken; guint32 i_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_isRegistered_clientID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken); for (i_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken=0; i_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken; i_org_csapi_pam_event_IpPAMEventHandler_isRegistered_authToken++) { @@ -61300,44 +42556,26 @@ decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *tvb _U_, pac } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_event_IpPAMEventHandler_isRegistered_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61346,22 +42584,17 @@ decode_org_csapi_pam_event_IpPAMEventHandler_isRegistered(tvbuff_t *tvb _U_, pac static void decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken; guint32 i_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken); for (i_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken=0; i_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken; i_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_authToken++) { @@ -61370,44 +42603,26 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tvbuff_t *tvb } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61416,7 +42631,6 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerAppInterface(tvbuff_t *tvb static void decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList; guint32 i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList; @@ -61424,15 +42638,12 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_, guint32 i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_clientID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList); for (i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList=0; i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList < u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList; i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_eventList++) { @@ -61446,7 +42657,7 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_, proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_validFor, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken); for (i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken=0; i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken; i_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_authToken++) { @@ -61455,44 +42666,26 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_registerForEvent_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61501,21 +42694,17 @@ decode_org_csapi_pam_event_IpPAMEventHandler_registerForEvent(tvbuff_t *tvb _U_, static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken; guint32 i_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_clientID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken); for (i_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken=0; i_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken; i_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface_authToken++) { @@ -61524,44 +42713,26 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(tvbuff_t *tv } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61570,21 +42741,17 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterAppInterface(tvbuff_t *tv static void decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken; guint32 i_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_eventID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken); for (i_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken=0; i_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken; i_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent_authToken++) { @@ -61593,44 +42760,26 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvbuff_t *tvb _ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61639,7 +42788,6 @@ decode_org_csapi_pam_event_IpPAMEventHandler_deregisterFromEvent(tvbuff_t *tvb _ static void decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData; guint32 i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData; @@ -61647,31 +42795,24 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *tvb _U_, pac guint32 i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData); for (i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData=0; i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData < u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData; i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_askerData++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return); for (i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return=0; i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return < u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return; i_org_csapi_pam_event_IpPAMEventManager_getAuthToken_return++) { @@ -61680,34 +42821,20 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *tvb _U_, pac } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61716,54 +42843,31 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAuthToken(tvbuff_t *tvb _U_, pac static void decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_event_IpPAMEventManager_obtainInterface_interfaceName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_event_IpPAMEventManager_obtainInterface_interfaceName); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61772,21 +42876,17 @@ decode_org_csapi_pam_event_IpPAMEventManager_obtainInterface(tvbuff_t *tvb _U_, static void decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken; guint32 i_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_event_IpPAMEventManager_getAccessControl_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_event_IpPAMEventManager_getAccessControl_identity); u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken); for (i_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken=0; i_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken; i_org_csapi_pam_event_IpPAMEventManager_getAccessControl_authToken++) { @@ -61795,45 +42895,27 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_pam_TpPAMAccessControlData" */ - decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAccessControlData" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61842,26 +42924,22 @@ decode_org_csapi_pam_event_IpPAMEventManager_getAccessControl(tvbuff_t *tvb _U_, static void decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken; guint32 i_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_event_IpPAMEventManager_setAccessControl_identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_event_IpPAMEventManager_setAccessControl_identity"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_event_IpPAMEventManager_setAccessControl_operation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_event_IpPAMEventManager_setAccessControl_operation); /* Begin struct "org_csapi_pam_TpPAMAccessControlData" */ - decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAccessControlData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAccessControlData" */ u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken); for (i_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken=0; i_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken; i_org_csapi_pam_event_IpPAMEventManager_setAccessControl_authToken++) { @@ -61870,44 +42948,26 @@ decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61916,21 +42976,17 @@ decode_org_csapi_pam_event_IpPAMEventManager_setAccessControl(tvbuff_t *tvb _U_, static void decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_activateService_authToken; guint32 i_org_csapi_pam_event_IpPAMEventManager_activateService_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_event_IpPAMEventManager_activateService_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_event_IpPAMEventManager_activateService_identity); u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_activateService_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_activateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_activateService_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_activateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_activateService_authToken); for (i_org_csapi_pam_event_IpPAMEventManager_activateService_authToken=0; i_org_csapi_pam_event_IpPAMEventManager_activateService_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_activateService_authToken; i_org_csapi_pam_event_IpPAMEventManager_activateService_authToken++) { @@ -61939,44 +42995,26 @@ decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -61985,21 +43023,17 @@ decode_org_csapi_pam_event_IpPAMEventManager_activateService(tvbuff_t *tvb _U_, static void decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken; guint32 i_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_event_IpPAMEventManager_deactivateService_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_event_IpPAMEventManager_deactivateService_identity); u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken); for (i_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken=0; i_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken; i_org_csapi_pam_event_IpPAMEventManager_deactivateService_authToken++) { @@ -62008,44 +43042,26 @@ decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuff_t *tvb _U_ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62054,21 +43070,17 @@ decode_org_csapi_pam_event_IpPAMEventManager_deactivateService(tvbuff_t *tvb _U_ static void decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken; guint32 i_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_identity); u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken); for (i_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken=0; i_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken < u_octet4_loop_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken; i_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_authToken++) { @@ -62077,44 +43089,26 @@ decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_boolean(tree, hf_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity_return, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62123,54 +43117,32 @@ decode_org_csapi_pam_event_IpPAMEventManager_isActiveIdentity(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mmm_TpMailboxIdentifier" */ - decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMailboxIdentifier" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62179,21 +43151,17 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_mailboxTerminated(tvbuff_t static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo; guint32 i_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo); for (i_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo=0; i_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo < u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo; i_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification_eventInfo++) { @@ -62205,45 +43173,26 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification(tvbuff_t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62252,51 +43201,29 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_reportNotification(tvbuff_t static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62305,51 +43232,29 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsInterrupted(tv static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62358,54 +43263,32 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_notificationsResumed(tvbuff static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminated(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ - decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62414,66 +43297,44 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_multiMediaMessagingTerminat static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet; guint32 i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet); for (i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet=0; i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet < u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet; i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes_mailboxSet++) { /* Begin struct "org_csapi_mmm_TpMailboxIdentifier" */ - decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMailboxIdentifier" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62482,66 +43343,44 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMailboxes( static void decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet; guint32 i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet); for (i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet=0; i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet < u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet; i_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMediaMessagingSessions_multiMediaMessagingSet++) { /* Begin struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ - decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62550,59 +43389,36 @@ decode_org_csapi_mmm_IpAppMultiMediaMessagingManager_terminateMultipleMultiMedia static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox_mailboxID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox_mailboxID"); - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox_authenticationInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox_authenticationInfo); get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mmm_TpMailboxIdentifier" */ - decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMailboxIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMailboxIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62611,61 +43427,38 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMailbox(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - /* Begin struct "org_csapi_mmm_TpTerminatingAddressList" */ - decode_org_csapi_mmm_TpTerminatingAddressList_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpTerminatingAddressList_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpTerminatingAddressList" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ - decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62674,22 +43467,17 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_openMultiMediaMessaging(tvbuff static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria; guint32 i_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria); for (i_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria=0; i_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria < u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria; i_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_eventCriteria++) { @@ -62701,44 +43489,26 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification(tvbuff_t *t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62747,53 +43517,31 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_createNotification(tvbuff_t *t static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62802,21 +43550,17 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_destroyNotification(tvbuff_t * static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria; guint32 i_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria); for (i_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria=0; i_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria < u_octet4_loop_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria; i_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification_eventCriteria++) { @@ -62828,44 +43572,26 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification(tvbuff_t *t } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62874,54 +43600,32 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_changeNotification(tvbuff_t *t static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_boolean(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "org_csapi_mmm_TpMessagingNotificationRequestedSetEntry" */ - decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMessagingNotificationRequestedSetEntry" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62930,54 +43634,31 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_getNextNotification(tvbuff_t * static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -62986,51 +43667,29 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_enableNotifications(tvbuff_t * static void decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63039,57 +43698,35 @@ decode_org_csapi_mmm_IpMultiMediaMessagingManager_disableNotifications(tvbuff_t static void decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_createFolderRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_createFolderRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_createFolderRes_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_createFolderRes_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63098,65 +43735,42 @@ decode_org_csapi_mmm_IpAppMailbox_createFolderRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_createFolderErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_createFolderErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_createFolderErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_createFolderErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_createFolderErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_createFolderErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63165,71 +43779,49 @@ decode_org_csapi_mmm_IpAppMailbox_createFolderErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames; guint32 i_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getFoldersRes_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderID); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames); for (i_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames=0; i_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames; i_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getFoldersRes_folderNames); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63238,67 +43830,44 @@ decode_org_csapi_mmm_IpAppMailbox_getFoldersRes(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getFoldersErr_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getFoldersErr_folderID); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFoldersErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getFoldersErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getFoldersErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63307,55 +43876,33 @@ decode_org_csapi_mmm_IpAppMailbox_getFoldersErr(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteFolderRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteFolderRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63364,65 +43911,42 @@ decode_org_csapi_mmm_IpAppMailbox_deleteFolderRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteFolderErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteFolderErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteFolderErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteFolderErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_deleteFolderErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_deleteFolderErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63431,55 +43955,33 @@ decode_org_csapi_mmm_IpAppMailbox_deleteFolderErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyFolderRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyFolderRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63488,65 +43990,42 @@ decode_org_csapi_mmm_IpAppMailbox_copyFolderRes(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyFolderErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyFolderErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyFolderErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyFolderErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_copyFolderErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_copyFolderErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63555,55 +44034,33 @@ decode_org_csapi_mmm_IpAppMailbox_copyFolderErr(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveFolderRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveFolderRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63612,65 +44069,42 @@ decode_org_csapi_mmm_IpAppMailbox_moveFolderRes(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveFolderErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveFolderErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveFolderErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveFolderErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_moveFolderErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_moveFolderErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63679,57 +44113,35 @@ decode_org_csapi_mmm_IpAppMailbox_moveFolderErr(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_putMessageRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_putMessageRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_putMessageRes_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_putMessageRes_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63738,65 +44150,42 @@ decode_org_csapi_mmm_IpAppMailbox_putMessageRes(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_putMessageErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_putMessageErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_putMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_putMessageErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_putMessageErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_putMessageErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63805,55 +44194,33 @@ decode_org_csapi_mmm_IpAppMailbox_putMessageErr(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyMessageRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyMessageRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63862,65 +44229,42 @@ decode_org_csapi_mmm_IpAppMailbox_copyMessageRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyMessageErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyMessageErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_copyMessageErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_copyMessageErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_copyMessageErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63929,55 +44273,33 @@ decode_org_csapi_mmm_IpAppMailbox_copyMessageErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveMessageRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveMessageRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -63986,65 +44308,42 @@ decode_org_csapi_mmm_IpAppMailbox_moveMessageRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveMessageErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveMessageErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_moveMessageErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_moveMessageErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_moveMessageErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64053,55 +44352,33 @@ decode_org_csapi_mmm_IpAppMailbox_moveMessageErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteMessageRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteMessageRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64110,65 +44387,42 @@ decode_org_csapi_mmm_IpAppMailbox_deleteMessageRes(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteMessageErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteMessageErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_deleteMessageErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_deleteMessageErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_deleteMessageErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64177,75 +44431,53 @@ decode_org_csapi_mmm_IpAppMailbox_deleteMessageErr(tvbuff_t *tvb _U_, packet_inf static void decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList; guint32 i_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList); for (i_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList=0; i_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList < u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList; i_org_csapi_mmm_IpAppMailbox_listMessagesRes_messageList++) { /* Begin struct "org_csapi_mmm_TpMessageDescription" */ - decode_org_csapi_mmm_TpMessageDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMessageDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMessageDescription" */ } /* Begin struct "org_csapi_mmm_TpMailboxFolderStatusInformation" */ - decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMailboxFolderStatusInformation" */ proto_tree_add_boolean(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesRes_final, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64254,65 +44486,42 @@ decode_org_csapi_mmm_IpAppMailbox_listMessagesRes(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessagesErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_listMessagesErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_listMessagesErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64321,70 +44530,48 @@ decode_org_csapi_mmm_IpAppMailbox_listMessagesErr(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList; guint32 i_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList); for (i_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList=0; i_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList < u_octet4_loop_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList; i_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes_partsList++) { /* Begin struct "org_csapi_mmm_TpBodyPartDescription" */ - decode_org_csapi_mmm_TpBodyPartDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpBodyPartDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpBodyPartDescription" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64393,65 +44580,42 @@ decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsRes(tvbuff_t *tvb _U_, pac static void decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64460,70 +44624,48 @@ decode_org_csapi_mmm_IpAppMailbox_listMessageBodyPartsErr(tvbuff_t *tvb _U_, pac static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts; guint32 i_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts); for (i_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts=0; i_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts; i_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes_bodyParts++) { /* Begin struct "org_csapi_mmm_TpBodyPart" */ - decode_org_csapi_mmm_TpBodyPart_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpBodyPart_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpBodyPart" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64532,65 +44674,42 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsRes(tvbuff_t *tvb _U_, pack static void decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64599,23 +44718,19 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageBodyPartsErr(tvbuff_t *tvb _U_, pack static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers; guint32 i_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers); for (i_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers=0; i_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers; i_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes_headers++) { @@ -64627,44 +44742,26 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb _U_, packet } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64673,65 +44770,42 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersRes(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64740,27 +44814,23 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageHeadersErr(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content; guint32 i_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMessageContentRes_contentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMessageContentRes_contentType); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMessageContentRes_contentTransferEncoding"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMessageContentRes_contentTransferEncoding); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content); for (i_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content=0; i_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content; i_org_csapi_mmm_IpAppMailbox_getMessageContentRes_content++) { @@ -64769,44 +44839,26 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb _U_, packet } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64815,65 +44867,42 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageContentRes(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageContentErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMessageContentErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMessageContentErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64882,23 +44911,19 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageContentErr(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message; guint32 i_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message); for (i_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message=0; i_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message; i_org_csapi_mmm_IpAppMailbox_getFullMessageRes_message++) { @@ -64907,44 +44932,26 @@ decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U_, packet_in } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -64953,65 +44960,42 @@ decode_org_csapi_mmm_IpAppMailbox_getFullMessageRes(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFullMessageErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getFullMessageErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getFullMessageErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65020,23 +45004,19 @@ decode_org_csapi_mmm_IpAppMailbox_getFullMessageErr(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties; guint32 i_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties); for (i_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties=0; i_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties; i_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes_returnedProperties++) { @@ -65048,44 +45028,26 @@ decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65094,25 +45056,21 @@ decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesRes(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties; guint32 i_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_folderID); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties); for (i_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties=0; i_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties; i_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes_returnedProperties++) { @@ -65124,44 +45082,26 @@ decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65170,25 +45110,21 @@ decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesRes(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties; guint32 i_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_messageID); u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties); for (i_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties=0; i_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties < u_octet4_loop_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties; i_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes_returnedProperties++) { @@ -65200,44 +45136,26 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65246,25 +45164,21 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesRes(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated; guint32 i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_messageID); u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated); for (i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated=0; i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated < u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated; i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes_propertiesUpdated++) { @@ -65276,44 +45190,26 @@ decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65322,72 +45218,50 @@ decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesRes(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated; guint32 i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_messageID); u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated); for (i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated=0; i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated < u_octet4_loop_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated; i_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr_propertiesNotUpdated++) { /* Begin struct "org_csapi_mmm_TpMessageInfoPropertyError" */ - decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMessageInfoPropertyError" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65396,65 +45270,42 @@ decode_org_csapi_mmm_IpAppMailbox_setMessageInfoPropertiesErr(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65463,65 +45314,42 @@ decode_org_csapi_mmm_IpAppMailbox_getMailboxInfoPropertiesErr(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65530,65 +45358,42 @@ decode_org_csapi_mmm_IpAppMailbox_getFolderInfoPropertiesErr(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_requestID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65597,53 +45402,31 @@ decode_org_csapi_mmm_IpAppMailbox_getMessageInfoPropertiesErr(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_close_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65652,55 +45435,33 @@ decode_org_csapi_mmm_IpMailbox_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_createFolderReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_createFolderReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_createFolderReq_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_createFolderReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65709,55 +45470,33 @@ decode_org_csapi_mmm_IpMailbox_createFolderReq(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getFoldersReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getFoldersReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getFoldersReq_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getFoldersReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65766,55 +45505,33 @@ decode_org_csapi_mmm_IpMailbox_getFoldersReq(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_deleteFolderReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_deleteFolderReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_deleteFolderReq_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_deleteFolderReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65823,57 +45540,35 @@ decode_org_csapi_mmm_IpMailbox_deleteFolderReq(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_copyFolderReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_copyFolderReq_sourceFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_copyFolderReq_sourceFolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_copyFolderReq_destinationFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_copyFolderReq_destinationFolderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_copyFolderReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65882,57 +45577,35 @@ decode_org_csapi_mmm_IpMailbox_copyFolderReq(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_moveFolderReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_moveFolderReq_sourceFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_moveFolderReq_sourceFolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_moveFolderReq_destinationFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_moveFolderReq_destinationFolderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_moveFolderReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -65941,23 +45614,19 @@ decode_org_csapi_mmm_IpMailbox_moveFolderReq(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpMailbox_putMessageReq_message; guint32 i_org_csapi_mmm_IpMailbox_putMessageReq_message; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_putMessageReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_putMessageReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_putMessageReq_folderID); u_octet4_loop_org_csapi_mmm_IpMailbox_putMessageReq_message = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_putMessageReq_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMailbox_putMessageReq_message); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_putMessageReq_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMailbox_putMessageReq_message); for (i_org_csapi_mmm_IpMailbox_putMessageReq_message=0; i_org_csapi_mmm_IpMailbox_putMessageReq_message < u_octet4_loop_org_csapi_mmm_IpMailbox_putMessageReq_message; i_org_csapi_mmm_IpMailbox_putMessageReq_message++) { @@ -65966,44 +45635,26 @@ decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, packet_info *pin } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_putMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66012,59 +45663,37 @@ decode_org_csapi_mmm_IpMailbox_putMessageReq(tvbuff_t *tvb _U_, packet_info *pin static void decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_copyMessageReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_copyMessageReq_fromFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_copyMessageReq_fromFolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_copyMessageReq_toFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_copyMessageReq_toFolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_copyMessageReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_copyMessageReq_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_copyMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66073,59 +45702,37 @@ decode_org_csapi_mmm_IpMailbox_copyMessageReq(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_moveMessageReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_moveMessageReq_fromFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_moveMessageReq_fromFolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_moveMessageReq_toFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_moveMessageReq_toFolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_moveMessageReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_moveMessageReq_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_moveMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66134,57 +45741,35 @@ decode_org_csapi_mmm_IpMailbox_moveMessageReq(tvbuff_t *tvb _U_, packet_info *pi static void decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_deleteMessageReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_deleteMessageReq_fromFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_deleteMessageReq_fromFolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_deleteMessageReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_deleteMessageReq_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_deleteMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66193,60 +45778,38 @@ decode_org_csapi_mmm_IpMailbox_deleteMessageReq(tvbuff_t *tvb _U_, packet_info * static void decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_listMessagesReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_listMessagesReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_listMessagesReq_folderID); /* Begin struct "org_csapi_mmm_TpListMessagesCriteria" */ - decode_org_csapi_mmm_TpListMessagesCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpListMessagesCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpListMessagesCriteria" */ proto_tree_add_boolean(tree, hf_org_csapi_mmm_IpMailbox_listMessagesReq_reset, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_listMessagesReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66255,59 +45818,37 @@ decode_org_csapi_mmm_IpMailbox_listMessagesReq(tvbuff_t *tvb _U_, packet_info *p static void decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_folderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_messageID); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_maxNestingLevel, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66316,71 +45857,49 @@ decode_org_csapi_mmm_IpMailbox_listMessageBodyPartsReq(tvbuff_t *tvb _U_, packet static void decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs; guint32 i_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_folderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_messageID); u_octet4_loop_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs); for (i_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs=0; i_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs < u_octet4_loop_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs; i_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_partIDs); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66389,57 +45908,35 @@ decode_org_csapi_mmm_IpMailbox_getMessageBodyPartsReq(tvbuff_t *tvb _U_, packet_ static void decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageHeadersReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageHeadersReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageHeadersReq_folderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageHeadersReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageHeadersReq_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageHeadersReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66448,57 +45945,35 @@ decode_org_csapi_mmm_IpMailbox_getMessageHeadersReq(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageContentReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageContentReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageContentReq_folderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageContentReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageContentReq_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageContentReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66507,57 +45982,35 @@ decode_org_csapi_mmm_IpMailbox_getMessageContentReq(tvbuff_t *tvb _U_, packet_in static void decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getFullMessageReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getFullMessageReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getFullMessageReq_folderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getFullMessageReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getFullMessageReq_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getFullMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66566,53 +46019,31 @@ decode_org_csapi_mmm_IpMailbox_getFullMessageReq(tvbuff_t *tvb _U_, packet_info static void decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66621,55 +46052,33 @@ decode_org_csapi_mmm_IpMailbox_getMailboxInfoPropertiesReq(tvbuff_t *tvb _U_, pa static void decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq_folderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq_folderID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66678,55 +46087,33 @@ decode_org_csapi_mmm_IpMailbox_getFolderInfoPropertiesReq(tvbuff_t *tvb _U_, pac static void decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq_messageID); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66735,23 +46122,19 @@ decode_org_csapi_mmm_IpMailbox_getMessageInfoPropertiesReq(tvbuff_t *tvb _U_, pa static void decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties; guint32 i_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_mailboxSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_messageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_messageID); u_octet4_loop_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties); for (i_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties=0; i_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties < u_octet4_loop_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties; i_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_properties++) { @@ -66763,44 +46146,26 @@ decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t *tvb _U_, pa } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66809,55 +46174,33 @@ decode_org_csapi_mmm_IpMailbox_setMessageInfoPropertiesReq(tvbuff_t *tvb _U_, pa static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66866,65 +46209,42 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageRes(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66933,55 +46253,33 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_sendMessageErr(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -66990,65 +46288,42 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageRes(tvbuff_t *tvb _U_ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67057,70 +46332,48 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_cancelMessageErr(tvbuff_t *tvb _U_ static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result; guint32 i_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result); for (i_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result=0; i_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result < u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result; i_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes_result++) { /* Begin struct "org_csapi_mmm_TpQueryStatusReport" */ - decode_org_csapi_mmm_TpQueryStatusReport_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpQueryStatusReport_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpQueryStatusReport" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67129,65 +46382,42 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusRes(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_error, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_errorDetails"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr_errorDetails); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67196,62 +46426,40 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_queryStatusErr(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport_deliveryReportType, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport_deliveryReportInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport_deliveryReportInfo); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67260,7 +46468,6 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageStatusReport(tvbuff_t *tvb static void decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message; guint32 i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message; @@ -67268,15 +46475,12 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_, guint32 i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message); for (i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message=0; i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message < u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message; i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_message++) { @@ -67285,7 +46489,7 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_, } u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers); for (i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers=0; i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers < u_octet4_loop_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers; i_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived_headers++) { @@ -67297,44 +46501,26 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_, } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67343,7 +46529,6 @@ decode_org_csapi_mmm_IpAppMultiMediaMessaging_messageReceived(tvbuff_t *tvb _U_, static void decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment; guint32 i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment; @@ -67353,23 +46538,20 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, pac guint32 i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_mmm_TpTerminatingAddressList" */ - decode_org_csapi_mmm_TpTerminatingAddressList_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpTerminatingAddressList_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpTerminatingAddressList" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_deliveryType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_deliveryType); u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment); for (i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment=0; i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment < u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment; i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_messageTreatment++) { @@ -67381,7 +46563,7 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, pac } u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message); for (i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message=0; i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message < u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message; i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_message++) { @@ -67390,7 +46572,7 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, pac } u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders); for (i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders=0; i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders < u_octet4_loop_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders; i_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_additionalHeaders++) { @@ -67402,44 +46584,26 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, pac } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq_return, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67448,55 +46612,33 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_sendMessageReq(tvbuff_t *tvb _U_, pac static void decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67505,55 +46647,33 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_cancelMessageReq(tvbuff_t *tvb _U_, p static void decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq_assignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -67562,108 +46682,82 @@ decode_org_csapi_mmm_IpMultiMediaMessaging_queryStatusReq(tvbuff_t *tvb _U_, pac static void decode_org_csapi_mmm_IpMultiMediaMessaging_close(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_org_csapi_mmm_IpMultiMediaMessaging_close_sessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpAddress_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_TpAddress_Plan, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_TpAddress_Plan, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAddress_AddrString"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAddress_AddrString); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAddress_Name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAddress_Name); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_TpAddress_Presentation, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_TpAddress_Presentation, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_TpAddress_Screening, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_TpAddress_Screening, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAddress_SubAddressString"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAddress_SubAddressString); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpAddressRange_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_TpAddressRange_Plan, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_TpAddressRange_Plan, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAddressRange_AddrString"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAddressRange_AddrString); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAddressRange_Name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAddressRange_Name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAddressRange_SubAddressString"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAddressRange_SubAddressString); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpCAIElements_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_TpCAIElements_UnitsPerInterval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -67684,20 +46778,20 @@ decode_org_csapi_TpCAIElements_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpChargeAdviceInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpCAIElements" */ - decode_org_csapi_TpCAIElements_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpCAIElements_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpCAIElements" */ /* Begin struct "org_csapi_TpCAIElements" */ - decode_org_csapi_TpCAIElements_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpCAIElements_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpChargePerTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_TpChargePerTime_InitialCharge, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -67710,7 +46804,7 @@ decode_org_csapi_TpChargePerTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpAoCInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin union "org_csapi_TpAoCOrder" */ @@ -67718,38 +46812,38 @@ decode_org_csapi_TpAoCInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t decode_org_csapi_TpAoCOrder_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_TpAoCOrder" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAoCInfo_Currency"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAoCInfo_Currency); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpTimeInterval_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpTimeInterval_StartTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpTimeInterval_StartTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpTimeInterval_StopTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpTimeInterval_StopTime); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpStructuredAttributeValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpStructuredAttributeValue_Type"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpStructuredAttributeValue_Type); - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_TpAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAttribute_AttributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAttribute_AttributeName); /* Begin union "org_csapi_TpAttributeValue" */ @@ -67760,16 +46854,15 @@ decode_org_csapi_TpAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpFaultStats_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFaultStats_Fault, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFaultStats_Fault, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_fw_TpFaultStats_Occurrences, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -67783,7 +46876,7 @@ decode_org_csapi_fw_TpFaultStats_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpFaultStatsRecord_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -67792,15 +46885,15 @@ decode_org_csapi_fw_TpFaultStatsRecord_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpTimeInterval" */ - decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpTimeInterval_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpTimeInterval" */ u_octet4_loop_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet); for (i_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet=0; i_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet < u_octet4_loop_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet; i_org_csapi_fw_TpFaultStatsRecord_FaultStatsSet++) { /* Begin struct "org_csapi_fw_TpFaultStats" */ - decode_org_csapi_fw_TpFaultStats_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFaultStats_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFaultStats" */ } @@ -67808,16 +46901,16 @@ decode_org_csapi_fw_TpFaultStatsRecord_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpLoadPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpLoadPolicy_LoadPolicy"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpLoadPolicy_LoadPolicy); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpLoadStatisticData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -67826,15 +46919,14 @@ decode_org_csapi_fw_TpLoadStatisticData_st(tvbuff_t *tvb _U_, packet_info *pinfo proto_tree_add_float(tree, hf_org_csapi_fw_TpLoadStatisticData_LoadValue, tvb, *offset-4, 4, get_CDR_float(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticData_LoadLevel, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticData_LoadLevel, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpLoadThreshold_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_float(tree, hf_org_csapi_fw_TpLoadThreshold_LoadThreshold, tvb, *offset-4, 4, get_CDR_float(tvb,offset,stream_is_big_endian, boundary)); @@ -67843,36 +46935,35 @@ decode_org_csapi_fw_TpLoadThreshold_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpLoadInitVal_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadInitVal_LoadLevel, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadInitVal_LoadLevel, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_fw_TpLoadThreshold" */ - decode_org_csapi_fw_TpLoadThreshold_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadThreshold_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpProperty_PropertyName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpProperty_PropertyName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpProperty_PropertyValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpProperty_PropertyValue); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -67880,15 +46971,15 @@ decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, packet_info *pi guint32 i_org_csapi_fw_TpClientAppDescription_ClientAppProperties; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpClientAppDescription_ClientAppID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpClientAppDescription_ClientAppID); u_octet4_loop_org_csapi_fw_TpClientAppDescription_ClientAppProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpClientAppDescription_ClientAppProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpClientAppDescription_ClientAppProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpClientAppDescription_ClientAppProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpClientAppDescription_ClientAppProperties); for (i_org_csapi_fw_TpClientAppDescription_ClientAppProperties=0; i_org_csapi_fw_TpClientAppDescription_ClientAppProperties < u_octet4_loop_org_csapi_fw_TpClientAppDescription_ClientAppProperties; i_org_csapi_fw_TpClientAppDescription_ClientAppProperties++) { /* Begin struct "org_csapi_fw_TpProperty" */ - decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpProperty" */ } @@ -67900,7 +46991,7 @@ decode_org_csapi_fw_TpClientAppDescription_st(tvbuff_t *tvb _U_, packet_info *pi /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -67908,15 +46999,15 @@ decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ guint32 i_org_csapi_fw_TpEntOp_EntOpProperties; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpEntOp_EntOpID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpEntOp_EntOpID); u_octet4_loop_org_csapi_fw_TpEntOp_EntOpProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpEntOp_EntOpProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpEntOp_EntOpProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpEntOp_EntOpProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpEntOp_EntOpProperties); for (i_org_csapi_fw_TpEntOp_EntOpProperties=0; i_org_csapi_fw_TpEntOp_EntOpProperties < u_octet4_loop_org_csapi_fw_TpEntOp_EntOpProperties; i_org_csapi_fw_TpEntOp_EntOpProperties++) { /* Begin struct "org_csapi_fw_TpProperty" */ - decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpProperty" */ } @@ -67924,18 +47015,18 @@ decode_org_csapi_fw_TpEntOp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpSag_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpSag_SagID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpSag_SagID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpSag_SagDescription"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpSag_SagDescription); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -67943,14 +47034,14 @@ decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _ guint32 i_org_csapi_fw_TpServiceProperty_ServicePropertyValueList; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProperty_ServicePropertyName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProperty_ServicePropertyName); u_octet4_loop_org_csapi_fw_TpServiceProperty_ServicePropertyValueList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceProperty_ServicePropertyValueList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceProperty_ServicePropertyValueList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceProperty_ServicePropertyValueList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceProperty_ServicePropertyValueList); for (i_org_csapi_fw_TpServiceProperty_ServicePropertyValueList=0; i_org_csapi_fw_TpServiceProperty_ServicePropertyValueList < u_octet4_loop_org_csapi_fw_TpServiceProperty_ServicePropertyValueList; i_org_csapi_fw_TpServiceProperty_ServicePropertyValueList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProperty_ServicePropertyValueList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProperty_ServicePropertyValueList); } @@ -67958,7 +47049,7 @@ decode_org_csapi_fw_TpServiceProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -67966,15 +47057,15 @@ decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packet_info *pinf guint32 i_org_csapi_fw_TpServiceDescription_ServicePropertyList; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceDescription_ServiceTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceDescription_ServiceTypeName); u_octet4_loop_org_csapi_fw_TpServiceDescription_ServicePropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceDescription_ServicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceDescription_ServicePropertyList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceDescription_ServicePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceDescription_ServicePropertyList); for (i_org_csapi_fw_TpServiceDescription_ServicePropertyList=0; i_org_csapi_fw_TpServiceDescription_ServicePropertyList < u_octet4_loop_org_csapi_fw_TpServiceDescription_ServicePropertyList; i_org_csapi_fw_TpServiceDescription_ServicePropertyList++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } @@ -67982,19 +47073,19 @@ decode_org_csapi_fw_TpServiceDescription_st(tvbuff_t *tvb _U_, packet_info *pinf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpService_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpService_ServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpService_ServiceID); /* Begin struct "org_csapi_fw_TpServiceDescription" */ - decode_org_csapi_fw_TpServiceDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68002,52 +47093,51 @@ decode_org_csapi_fw_TpServiceProfileDescription_st(tvbuff_t *tvb _U_, packet_inf guint32 i_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProfileDescription_ServiceContractID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProfileDescription_ServiceContractID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProfileDescription_ServiceStartDate"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProfileDescription_ServiceStartDate); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProfileDescription_ServiceEndDate"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProfileDescription_ServiceEndDate); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProfileDescription_ServiceTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProfileDescription_ServiceTypeName); u_octet4_loop_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties); for (i_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties=0; i_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties < u_octet4_loop_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties; i_org_csapi_fw_TpServiceProfileDescription_ServiceSubscriptionProperties++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } proto_tree_add_boolean(tree, hf_org_csapi_fw_TpServiceProfileDescription_InUse, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProfileDescription_ServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProfileDescription_ServiceID); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceTypeProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceTypeProperty_ServicePropertyName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceTypeProperty_ServicePropertyName); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypeProperty_ServiceTypePropertyMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypeProperty_ServiceTypePropertyMode, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceTypeProperty_ServicePropertyTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceTypeProperty_ServicePropertyTypeName); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68058,21 +47148,21 @@ decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList); for (i_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList=0; i_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList < u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList; i_org_csapi_fw_TpServiceTypeDescription_ServiceTypePropertyList++) { /* Begin struct "org_csapi_fw_TpServiceTypeProperty" */ - decode_org_csapi_fw_TpServiceTypeProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceTypeProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceTypeProperty" */ } u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList); for (i_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList=0; i_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList < u_octet4_loop_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList; i_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceTypeDescription_ServiceTypeNameList); } @@ -68082,7 +47172,7 @@ decode_org_csapi_fw_TpServiceTypeDescription_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68091,7 +47181,7 @@ decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature); for (i_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature=0; i_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature < u_octet4_loop_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature; i_org_csapi_fw_TpSignatureAndServiceMgr_DigitalSignature++) { @@ -68101,12 +47191,11 @@ decode_org_csapi_fw_TpSignatureAndServiceMgr_st(tvbuff_t *tvb _U_, packet_info * get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68114,23 +47203,23 @@ decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto guint32 i_org_csapi_fw_TpPerson_PersonProperties; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpPerson_PersonName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpPerson_PersonName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpPerson_PostalAddress"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpPerson_PostalAddress); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpPerson_TelephoneNumber"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpPerson_TelephoneNumber); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpPerson_Email"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpPerson_Email); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpPerson_HomePage"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpPerson_HomePage); u_octet4_loop_org_csapi_fw_TpPerson_PersonProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpPerson_PersonProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpPerson_PersonProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpPerson_PersonProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpPerson_PersonProperties); for (i_org_csapi_fw_TpPerson_PersonProperties=0; i_org_csapi_fw_TpPerson_PersonProperties < u_octet4_loop_org_csapi_fw_TpPerson_PersonProperties; i_org_csapi_fw_TpPerson_PersonProperties++) { /* Begin struct "org_csapi_fw_TpProperty" */ - decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpProperty" */ } @@ -68138,7 +47227,7 @@ decode_org_csapi_fw_TpPerson_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68147,26 +47236,26 @@ decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U_, packet_in /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_fw_TpPerson" */ - decode_org_csapi_fw_TpPerson_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpPerson_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpPerson" */ /* Begin struct "org_csapi_fw_TpPerson" */ - decode_org_csapi_fw_TpPerson_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpPerson_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpPerson" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceContractDescription_ServiceStartDate"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceContractDescription_ServiceStartDate); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceContractDescription_ServiceEndDate"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceContractDescription_ServiceEndDate); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceContractDescription_ServiceTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceContractDescription_ServiceTypeName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceContractDescription_ServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceContractDescription_ServiceID); u_octet4_loop_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties); for (i_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties=0; i_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties < u_octet4_loop_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties; i_org_csapi_fw_TpServiceContractDescription_ServiceSubscriptionProperties++) { /* Begin struct "org_csapi_fw_TpServiceProperty" */ - decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpServiceProperty" */ } @@ -68176,7 +47265,7 @@ decode_org_csapi_fw_TpServiceContractDescription_st(tvbuff_t *tvb _U_, packet_in /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin union "org_csapi_fw_TpLoadStatisticEntityID" */ @@ -68184,7 +47273,7 @@ decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_ decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_fw_TpLoadStatisticEntityID" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpLoadStatistic_TimeStamp"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpLoadStatistic_TimeStamp); /* Begin union "org_csapi_fw_TpLoadStatisticInfo" */ @@ -68195,31 +47284,31 @@ decode_org_csapi_fw_TpLoadStatistic_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceContract_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceContract_ServiceContractID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceContract_ServiceContractID); /* Begin struct "org_csapi_fw_TpServiceContractDescription" */ - decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceContractDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceProfile_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceProfile_ServiceProfileID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceProfile_ServiceProfileID); /* Begin struct "org_csapi_fw_TpServiceProfileDescription" */ - decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpServiceProfileDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpAuthDomain_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin union "org_csapi_fw_TpDomainID" */ @@ -68229,54 +47318,53 @@ decode_org_csapi_fw_TpAuthDomain_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p /* End union "org_csapi_fw_TpDomainID" */ get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpSagProfilePair_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpSagProfilePair_Sag"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpSagProfilePair_Sag); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpSagProfilePair_ServiceProfile"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpSagProfilePair_ServiceProfile); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpAddSagMembersConflict_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpAddSagMembersConflict_ClientApplication"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpAddSagMembersConflict_ClientApplication); /* Begin struct "org_csapi_fw_TpSagProfilePair" */ - decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpSagProfilePair" */ /* Begin struct "org_csapi_fw_TpSagProfilePair" */ - decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpSagProfilePair" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpAddSagMembersConflict_Service"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpAddSagMembersConflict_Service); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpAssignSagToServiceProfileConflict_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpAssignSagToServiceProfileConflict_ClientApplication"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpAssignSagToServiceProfileConflict_ClientApplication); /* Begin struct "org_csapi_fw_TpSagProfilePair" */ - decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpSagProfilePair_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpSagProfilePair" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpAssignSagToServiceProfileConflict_Service"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpAssignSagToServiceProfileConflict_Service); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68285,20 +47373,19 @@ decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_, packet_info guint32 i_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyName); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypePropertyValue_ServiceTypePropertyMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypePropertyValue_ServiceTypePropertyMode, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyTypeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyTypeName); u_octet4_loop_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList); for (i_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList=0; i_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList < u_octet4_loop_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList; i_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpServiceTypePropertyValue_ServicePropertyValueList); } @@ -68306,7 +47393,7 @@ decode_org_csapi_fw_TpServiceTypePropertyValue_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68314,11 +47401,11 @@ decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *tvb _U_, pack guint32 i_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwMigrationServiceAvailableInfo_ServiceType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_ServiceType); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwMigrationServiceAvailableInfo_ServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_ServiceID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwMigrationServiceAvailableInfo_CompatibleServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_CompatibleServiceID); proto_tree_add_boolean(tree, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_BackwardCompatibilityLevel, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -68326,10 +47413,10 @@ decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *tvb _U_, pack proto_tree_add_boolean(tree, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_DataMigrated, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationDataAndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationDataAndTime); u_octet4_loop_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo); for (i_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo=0; i_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo < u_octet4_loop_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo; i_org_csapi_fw_TpFwMigrationServiceAvailableInfo_MigrationAdditionalInfo++) { @@ -68344,25 +47431,25 @@ decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvbuff_t *tvb _U_, pack /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_fw_TpFwAgreementInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwAgreementInfo_ClientApplicationID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwAgreementInfo_ClientApplicationID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwAgreementInfo_ServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwAgreementInfo_ServiceID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwAgreementInfo_ServiceContractID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwAgreementInfo_ServiceContractID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwAgreementInfo_ServiceProfileID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwAgreementInfo_ServiceProfileID); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIMessageCriteria_EndSequence"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIMessageCriteria_EndSequence); proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIMessageCriteria_MaxMessageTime, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -68372,7 +47459,7 @@ decode_org_csapi_ui_TpUIMessageCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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 _U_) +decode_org_csapi_ui_TpUIEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68380,43 +47467,42 @@ decode_org_csapi_ui_TpUIEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIEventInfo_ServiceCode"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIEventInfo_ServiceCode); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIEventInfo_DataTypeIndication, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIEventInfo_DataTypeIndication, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIEventInfo_DataString"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIEventInfo_DataString); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIEventCriteria_ServiceCode"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIEventCriteria_ServiceCode); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_ui_TpUIEventCriteria" */ - decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIEventCriteria" */ proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIEventCriteriaResult_AssignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -68424,7 +47510,7 @@ decode_org_csapi_ui_TpUIEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68434,19 +47520,18 @@ decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_, packet_info /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIEventNotificationInfo_ServiceCode"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIEventNotificationInfo_ServiceCode); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIEventNotificationInfo_DataTypeIndication, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIEventNotificationInfo_DataTypeIndication, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_ui_TpUIEventNotificationInfo_UIEventData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIEventNotificationInfo_UIEventData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIEventNotificationInfo_UIEventData); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIEventNotificationInfo_UIEventData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIEventNotificationInfo_UIEventData); for (i_org_csapi_ui_TpUIEventNotificationInfo_UIEventData=0; i_org_csapi_ui_TpUIEventNotificationInfo_UIEventData < u_octet4_loop_org_csapi_ui_TpUIEventNotificationInfo_UIEventData; i_org_csapi_ui_TpUIEventNotificationInfo_UIEventData++) { @@ -68458,18 +47543,18 @@ decode_org_csapi_ui_TpUIEventNotificationInfo_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIRecognitionProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIRecognitionProperty_PropertyName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIRecognitionProperty_PropertyName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIRecognitionProperty_PropertyValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIRecognitionProperty_PropertyValue); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68477,25 +47562,25 @@ decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvbuff_t *tvb _U_, packet_info *p guint32 i_org_csapi_ui_TpUIRecognitionCriteria_Properties; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIRecognitionCriteria_SpeakerID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIRecognitionCriteria_SpeakerID); u_octet4_loop_org_csapi_ui_TpUIRecognitionCriteria_Properties = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIRecognitionCriteria_Properties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIRecognitionCriteria_Properties); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIRecognitionCriteria_Properties, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIRecognitionCriteria_Properties); for (i_org_csapi_ui_TpUIRecognitionCriteria_Properties=0; i_org_csapi_ui_TpUIRecognitionCriteria_Properties < u_octet4_loop_org_csapi_ui_TpUIRecognitionCriteria_Properties; i_org_csapi_ui_TpUIRecognitionCriteria_Properties++) { /* Begin struct "org_csapi_ui_TpUIRecognitionProperty" */ - decode_org_csapi_ui_TpUIRecognitionProperty_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIRecognitionProperty_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIRecognitionProperty" */ } - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIRecognitionCriteria_Grammar"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIRecognitionCriteria_Grammar); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUICollectCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68506,43 +47591,41 @@ decode_org_csapi_ui_TpUICollectCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo proto_tree_add_uint(tree, hf_org_csapi_ui_TpUICollectCriteria_MaxLength, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUICollectCriteria_EndSequence"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUICollectCriteria_EndSequence); proto_tree_add_uint(tree, hf_org_csapi_ui_TpUICollectCriteria_StartTimeout, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_ui_TpUICollectCriteria_InterCharTimeout, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUICollectCriteria_CollectMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUICollectCriteria_CollectMode, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_ui_TpUIRecognitionCriteria" */ - decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIRecognitionCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIWordOverride_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIWordOverride_Spelling"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIWordOverride_Spelling); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIWordOverride_PronounceType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIWordOverride_PronounceType, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIWordOverride_PronounceAs"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIWordOverride_PronounceAs); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68551,31 +47634,27 @@ decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, packet_info *pin guint32 i_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerGender, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerGender, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerAge, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerAge, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerRate, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerRate, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerRange, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_SpeakerRange, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUISynthesisInfoData_TextData"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUISynthesisInfoData_TextData); u_octet4_loop_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet); for (i_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet=0; i_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet < u_octet4_loop_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet; i_org_csapi_ui_TpUISynthesisInfoData_WordOverrideSet++) { /* Begin struct "org_csapi_ui_TpUIWordOverride" */ - decode_org_csapi_ui_TpUIWordOverride_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUIWordOverride_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUIWordOverride" */ } @@ -68583,18 +47662,17 @@ decode_org_csapi_ui_TpUISynthesisInfoData_st(tvbuff_t *tvb _U_, packet_info *pin /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallError_ErrorTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallError_ErrorTime); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallError_ErrorType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallError_ErrorType, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_TpCallAdditionalErrorInfo" */ @@ -68605,7 +47683,7 @@ decode_org_csapi_cc_TpCallError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pr /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68614,15 +47692,14 @@ decode_org_csapi_cc_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _ proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEndedReport_CallLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEndedReport_Cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEndedReport_Cause, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68631,53 +47708,49 @@ decode_org_csapi_cc_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallInfoReport_CallInfoType, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallInfoReport_CallInitiationStartTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallInfoReport_CallInitiationStartTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallInfoReport_CallConnectedToResourceTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallInfoReport_CallConnectedToResourceTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallInfoReport_CallConnectedToDestinationTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallInfoReport_CallConnectedToDestinationTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallInfoReport_CallEndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallInfoReport_CallEndTime); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallInfoReport_Cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallInfoReport_Cause, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallServiceCode_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallServiceCode_CallServiceCodeType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallServiceCode_CallServiceCodeType, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallServiceCode_ServiceCodeValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallServiceCode_ServiceCodeValue); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallTreatment_CallTreatmentType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallTreatment_CallTreatmentType, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallTreatment_ReleaseCause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallTreatment_ReleaseCause, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_TpCallAdditionalTreatmentInfo" */ @@ -68688,7 +47761,7 @@ decode_org_csapi_cc_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68699,12 +47772,11 @@ decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U guint32 i_org_csapi_cc_TpCallChargePlan_AdditionalInfo; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_ChargeOrderType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_ChargeOrderType, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_cc_TpCallChargePlan_TransparentCharge = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_TransparentCharge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallChargePlan_TransparentCharge); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_TransparentCharge, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallChargePlan_TransparentCharge); for (i_org_csapi_cc_TpCallChargePlan_TransparentCharge=0; i_org_csapi_cc_TpCallChargePlan_TransparentCharge < u_octet4_loop_org_csapi_cc_TpCallChargePlan_TransparentCharge; i_org_csapi_cc_TpCallChargePlan_TransparentCharge++) { @@ -68715,7 +47787,7 @@ decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_ChargePlan, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_cc_TpCallChargePlan_AdditionalInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_AdditionalInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallChargePlan_AdditionalInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_AdditionalInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallChargePlan_AdditionalInfo); for (i_org_csapi_cc_TpCallChargePlan_AdditionalInfo=0; i_org_csapi_cc_TpCallChargePlan_AdditionalInfo < u_octet4_loop_org_csapi_cc_TpCallChargePlan_AdditionalInfo; i_org_csapi_cc_TpCallChargePlan_AdditionalInfo++) { @@ -68723,9 +47795,8 @@ decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_PartyToCharge, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallChargePlan_PartyToCharge, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_TpCallPartyToChargeAdditionalInfo" */ @@ -68736,7 +47807,7 @@ decode_org_csapi_cc_TpCallChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68744,30 +47815,28 @@ decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventCriteria_CallEventName, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventCriteria_CallNotificationType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventCriteria_CallNotificationType, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventCriteria_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventCriteria_MonitorMode, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cc_gccs_TpCallEventCriteria" */ - decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallEventCriteria" */ proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventCriteriaResult_AssignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -68775,7 +47844,7 @@ decode_org_csapi_cc_gccs_TpCallEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReleaseCause_Value, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -68786,22 +47855,20 @@ decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvbuff_t *tvb _U_, packet_info *p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReport_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReport_MonitorMode, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_TpCallReport_CallEventTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_TpCallReport_CallEventTime); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReport_CallReportType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReport_CallReportType, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_gccs_TpCallAdditionalReportInfo" */ @@ -68812,20 +47879,18 @@ decode_org_csapi_cc_gccs_TpCallReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReportRequest_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReportRequest_MonitorMode, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReportRequest_CallReportType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallReportRequest_CallReportType, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_gccs_TpCallAdditionalReportCriteria" */ @@ -68836,7 +47901,7 @@ decode_org_csapi_cc_gccs_TpCallReportRequest_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -68846,19 +47911,19 @@ decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinf /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo); for (i_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo=0; i_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo < u_octet4_loop_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo; i_org_csapi_cc_gccs_TpCallEventInfo_CallAppInfo++) { @@ -68871,63 +47936,60 @@ decode_org_csapi_cc_gccs_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinf proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventInfo_CallEventName, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventInfo_CallNotificationType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventInfo_CallNotificationType, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventInfo_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEventInfo_MonitorMode, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallEndedReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallEndedReport_CallLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallInfoReport_CallInfoType, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_TpCallInfoReport_CallInitiationStartTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_TpCallInfoReport_CallInitiationStartTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_TpCallInfoReport_CallConnectedToResourceTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_TpCallInfoReport_CallConnectedToResourceTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_TpCallInfoReport_CallConnectedToDestinationTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_TpCallInfoReport_CallConnectedToDestinationTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_TpCallInfoReport_CallEndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_TpCallInfoReport_CallEndTime); /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallTreatment_CallTreatmentType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallTreatment_CallTreatmentType, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */ /* Begin union "org_csapi_cc_TpCallAdditionalTreatmentInfo" */ @@ -68938,69 +48000,66 @@ decode_org_csapi_cc_gccs_TpCallTreatment_st(tvbuff_t *tvb _U_, packet_info *pinf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallIdentifier_CallSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallNotificationScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallNotificationReportScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallEventRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventRequest_CallEventType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventRequest_CallEventType, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_TpAdditionalCallEventCriteria" */ decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_cc_TpAdditionalCallEventCriteria" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventRequest_CallMonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventRequest_CallMonitorMode, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallNotificationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69009,15 +48068,15 @@ decode_org_csapi_cc_TpCallNotificationRequest_st(tvbuff_t *tvb _U_, packet_info /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_cc_TpCallNotificationScope" */ - decode_org_csapi_cc_TpCallNotificationScope_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallNotificationScope_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallNotificationScope" */ u_octet4_loop_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested); for (i_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested=0; i_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested < u_octet4_loop_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested; i_org_csapi_cc_TpCallNotificationRequest_CallEventsRequested++) { /* Begin struct "org_csapi_cc_TpCallEventRequest" */ - decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallEventRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallEventRequest" */ } @@ -69025,11 +48084,11 @@ decode_org_csapi_cc_TpCallNotificationRequest_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cc_TpCallNotificationRequest" */ - decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallNotificationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallNotificationRequest" */ proto_tree_add_uint(tree, hf_org_csapi_cc_TpNotificationRequested_AssignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69037,48 +48096,45 @@ decode_org_csapi_cc_TpNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallLegConnectionProperties_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLegConnectionProperties_AttachMechanism, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLegConnectionProperties_AttachMechanism, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventInfo_CallEventType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventInfo_CallEventType, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_TpCallAdditionalEventInfo" */ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_cc_TpCallAdditionalEventInfo" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventInfo_CallMonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallEventInfo_CallMonitorMode, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallEventInfo_CallEventTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallEventInfo_CallEventTime); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69087,12 +48143,12 @@ decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet); for (i_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet=0; i_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet < u_octet4_loop_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet; i_org_csapi_cc_TpNotificationRequestedSetEntry_NotificationRequestSet++) { /* Begin struct "org_csapi_cc_TpNotificationRequested" */ - decode_org_csapi_cc_TpNotificationRequested_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpNotificationRequested_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpNotificationRequested" */ } @@ -69102,7 +48158,7 @@ decode_org_csapi_cc_TpNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCarrier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69112,7 +48168,7 @@ decode_org_csapi_cc_TpCarrier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_cc_TpCarrier_CarrierID = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCarrier_CarrierID, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCarrier_CarrierID); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCarrier_CarrierID, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCarrier_CarrierID); for (i_org_csapi_cc_TpCarrier_CarrierID=0; i_org_csapi_cc_TpCarrier_CarrierID < u_octet4_loop_org_csapi_cc_TpCarrier_CarrierID; i_org_csapi_cc_TpCarrier_CarrierID++) { @@ -69120,15 +48176,14 @@ decode_org_csapi_cc_TpCarrier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCarrier_CarrierSelectionField, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCarrier_CarrierSelectionField, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69137,10 +48192,10 @@ decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pi /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_cc_TpCallNotificationReportScope" */ - decode_org_csapi_cc_TpCallNotificationReportScope_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallNotificationReportScope_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallNotificationReportScope" */ u_octet4_loop_org_csapi_cc_TpCallNotificationInfo_CallAppInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallNotificationInfo_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallNotificationInfo_CallAppInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallNotificationInfo_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallNotificationInfo_CallAppInfo); for (i_org_csapi_cc_TpCallNotificationInfo_CallAppInfo=0; i_org_csapi_cc_TpCallNotificationInfo_CallAppInfo < u_octet4_loop_org_csapi_cc_TpCallNotificationInfo_CallAppInfo; i_org_csapi_cc_TpCallNotificationInfo_CallAppInfo++) { @@ -69152,13 +48207,13 @@ decode_org_csapi_cc_TpCallNotificationInfo_st(tvbuff_t *tvb _U_, packet_info *pi } /* Begin struct "org_csapi_cc_TpCallEventInfo" */ - decode_org_csapi_cc_TpCallEventInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallEventInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69169,23 +48224,22 @@ decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLegInfoReport_CallLegInfoType, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallLegInfoReport_CallLegStartTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallLegInfoReport_CallLegStartTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallLegInfoReport_CallLegConnectedToResourceTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallLegInfoReport_CallLegConnectedToResourceTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallLegInfoReport_CallLegConnectedToAddressTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallLegInfoReport_CallLegConnectedToAddressTime); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallLegInfoReport_CallLegEndTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallLegInfoReport_CallLegEndTime); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLegInfoReport_CallLegReleaseCause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLegInfoReport_CallLegReleaseCause, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_cc_TpCallLegInfoReport_CallAppInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLegInfoReport_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallLegInfoReport_CallAppInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLegInfoReport_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallLegInfoReport_CallAppInfo); for (i_org_csapi_cc_TpCallLegInfoReport_CallAppInfo=0; i_org_csapi_cc_TpCallLegInfoReport_CallAppInfo < u_octet4_loop_org_csapi_cc_TpCallLegInfoReport_CallAppInfo; i_org_csapi_cc_TpCallLegInfoReport_CallAppInfo++) { @@ -69200,42 +48254,40 @@ decode_org_csapi_cc_TpCallLegInfoReport_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_TpCallLegProperty_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallLegProperty_CallLegPropertyName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallLegProperty_CallLegPropertyName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallLegProperty_CallLegPropertyValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallLegProperty_CallLegPropertyValue); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_CallSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_TpCallLegIdentifier_CallLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69245,22 +48297,20 @@ decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvbuff_t *tvb _U_, packet_info get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet); for (i_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet=0; i_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet < u_octet4_loop_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet; i_org_csapi_cc_mpccs_TpAppCallLegCallBack_AppCallLegSet++) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - } } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpCallSuperviseVolume_VolumeQuantity, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69271,44 +48321,40 @@ decode_org_csapi_cc_mmccs_TpCallSuperviseVolume_st(tvbuff_t *tvb _U_, packet_inf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamRequest_Direction, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamRequest_Direction, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest" */ decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamRequest_MediaMonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamRequest_MediaMonitorMode, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamRequest_EventType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamRequest_EventType, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpMediaStream_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStream_Direction, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStream_Direction, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest" */ @@ -69319,12 +48365,11 @@ decode_org_csapi_cc_mmccs_TpMediaStream_st(tvbuff_t *tvb _U_, packet_info *pinfo get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69333,15 +48378,15 @@ decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvbuff_t *tvb _U_, packe /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_cc_TpCallNotificationScope" */ - decode_org_csapi_cc_TpCallNotificationScope_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallNotificationScope_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallNotificationScope" */ u_octet4_loop_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested); for (i_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested=0; i_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested < u_octet4_loop_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested; i_org_csapi_cc_mmccs_TpNotificationMediaRequest_MediaStreamsRequested++) { /* Begin struct "org_csapi_cc_mmccs_TpMediaStreamRequest" */ - decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpMediaStreamRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpMediaStreamRequest" */ } @@ -69349,11 +48394,11 @@ decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvbuff_t *tvb _U_, packe /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */ - decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpNotificationMediaRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpNotificationMediaRequest" */ proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaNotificationRequested_AssignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69361,31 +48406,29 @@ decode_org_csapi_cc_mmccs_TpMediaNotificationRequested_st(tvbuff_t *tvb _U_, pac /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMultiMediaCallIdentifier_MMCallSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMultiMediaCallLegIdentifier_MMCallLegSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69395,22 +48438,20 @@ decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvbuff_t *tvb _U_, p get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - u_octet4_loop_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet); for (i_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet=0; i_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet < u_octet4_loop_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet; i_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_AppCallLegSet++) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - } } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_boolean(tree, hf_org_csapi_cc_cccs_TpMonoMediaConfPolicy_JoinAllowed, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -69419,7 +48460,7 @@ decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69428,13 +48469,13 @@ decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinf /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo); for (i_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo=0; i_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo < u_octet4_loop_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo; i_org_csapi_cc_cccs_TpJoinEventInfo_CallAppInfo++) { @@ -69449,12 +48490,12 @@ decode_org_csapi_cc_cccs_TpJoinEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_cccs_TpConfSearchCriteria_StartSearch"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_cccs_TpConfSearchCriteria_StartSearch); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_cccs_TpConfSearchCriteria_StopSearch"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_cccs_TpConfSearchCriteria_StopSearch); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpConfSearchCriteria_RequestedResources, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69464,12 +48505,12 @@ decode_org_csapi_cc_cccs_TpConfSearchCriteria_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_boolean(tree, hf_org_csapi_cc_cccs_TpConfSearchResult_MatchFound, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_cccs_TpConfSearchResult_ActualStartTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_cccs_TpConfSearchResult_ActualStartTime); proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpConfSearchResult_ActualResources, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69479,7 +48520,7 @@ decode_org_csapi_cc_cccs_TpConfSearchResult_st(tvbuff_t *tvb _U_, packet_info *p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69492,19 +48533,18 @@ decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvbuff_t *tvb _U_, packet_inf proto_tree_add_boolean(tree, hf_org_csapi_cc_cccs_TpMultiMediaConfPolicy_Chaired, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpMultiMediaConfPolicy_VideoHandling, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpMultiMediaConfPolicy_VideoHandling, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpResourceReservation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpResourceReservation_ReservationID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69512,64 +48552,59 @@ decode_org_csapi_cc_cccs_TpResourceReservation_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpConfCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpConfCallIdentifier_ConfCallSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cc_cccs_TpSubConfCallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpSubConfCallIdentifier_SubConfCallSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUIIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIIdentifier_UserInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_ui_TpUICallIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUICallIdentifier_UserInteractionSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpLocationResponseTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationResponseTime_ResponseTime, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationResponseTime_ResponseTime, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationResponseTime_TimerValue, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69577,7 +48612,7 @@ decode_org_csapi_mm_TpLocationResponseTime_st(tvbuff_t *tvb _U_, packet_info *pi /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpLocationTrigger_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69594,9 +48629,8 @@ decode_org_csapi_mm_TpLocationTrigger_st(tvbuff_t *tvb _U_, packet_info *pinfo _ proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationTrigger_AngleOfSemiMajor, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationTrigger_Criterion, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationTrigger_Criterion, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationTrigger_ReportingInterval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -69604,7 +48638,7 @@ decode_org_csapi_mm_TpLocationTrigger_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69614,25 +48648,23 @@ decode_org_csapi_mm_TpLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _ proto_tree_add_float(tree, hf_org_csapi_mm_TpLocationRequest_RequestedAccuracy, tvb, *offset-4, 4, get_CDR_float(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_mm_TpLocationResponseTime" */ - decode_org_csapi_mm_TpLocationResponseTime_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationResponseTime_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationResponseTime" */ proto_tree_add_boolean(tree, hf_org_csapi_mm_TpLocationRequest_AltitudeRequested, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationRequest_Type, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationRequest_Type, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationRequest_Priority, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpLocationRequest_Priority, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpLocationRequest_RequestedLocationMethod"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpLocationRequest_RequestedLocationMethod); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpGeographicalPosition_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69643,9 +48675,8 @@ decode_org_csapi_mm_TpGeographicalPosition_st(tvbuff_t *tvb _U_, packet_info *pi proto_tree_add_float(tree, hf_org_csapi_mm_TpGeographicalPosition_Latitude, tvb, *offset-4, 4, get_CDR_float(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpGeographicalPosition_TypeOfUncertaintyShape, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpGeographicalPosition_TypeOfUncertaintyShape, tvb, *offset-4, 4, u_octet4); proto_tree_add_float(tree, hf_org_csapi_mm_TpGeographicalPosition_UncertaintyInnerSemiMajor, tvb, *offset-4, 4, get_CDR_float(tvb,offset,stream_is_big_endian, boundary)); @@ -69665,7 +48696,7 @@ decode_org_csapi_mm_TpGeographicalPosition_st(tvbuff_t *tvb _U_, packet_info *pi /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69676,17 +48707,16 @@ decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvbuff_t *tvb _U_, packet_in proto_tree_add_uint(tree, hf_org_csapi_mm_TpMobilityStopAssignmentData_AssignmentId, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpMobilityStopAssignmentData_StopScope, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpMobilityStopAssignmentData_StopScope, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_mm_TpMobilityStopAssignmentData_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpMobilityStopAssignmentData_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpMobilityStopAssignmentData_Users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpMobilityStopAssignmentData_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpMobilityStopAssignmentData_Users); for (i_org_csapi_mm_TpMobilityStopAssignmentData_Users=0; i_org_csapi_mm_TpMobilityStopAssignmentData_Users < u_octet4_loop_org_csapi_mm_TpMobilityStopAssignmentData_Users; i_org_csapi_mm_TpMobilityStopAssignmentData_Users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -69694,7 +48724,7 @@ decode_org_csapi_mm_TpMobilityStopAssignmentData_st(tvbuff_t *tvb _U_, packet_in /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69702,11 +48732,10 @@ decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_mm_TpGeographicalPosition" */ - decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpGeographicalPosition" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUlExtendedData_TerminalType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUlExtendedData_TerminalType, tvb, *offset-4, 4, u_octet4); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUlExtendedData_AltitudePresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -69716,15 +48745,15 @@ decode_org_csapi_mm_TpUlExtendedData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUlExtendedData_TimestampPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUlExtendedData_Timestamp"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUlExtendedData_Timestamp); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUlExtendedData_UsedLocationMethod"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUlExtendedData_UsedLocationMethod); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserLocation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69732,20 +48761,19 @@ decode_org_csapi_mm_TpUserLocation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocation_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocation_StatusCode, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_mm_TpGeographicalPosition" */ - decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserLocationExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69755,19 +48783,18 @@ decode_org_csapi_mm_TpUserLocationExtended_st(tvbuff_t *tvb _U_, packet_info *pi /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationExtended_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationExtended_StatusCode, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_mm_TpUserLocationExtended_Locations = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationExtended_Locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpUserLocationExtended_Locations); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationExtended_Locations, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpUserLocationExtended_Locations); for (i_org_csapi_mm_TpUserLocationExtended_Locations=0; i_org_csapi_mm_TpUserLocationExtended_Locations < u_octet4_loop_org_csapi_mm_TpUserLocationExtended_Locations; i_org_csapi_mm_TpUserLocationExtended_Locations++) { /* Begin struct "org_csapi_mm_TpUlExtendedData" */ - decode_org_csapi_mm_TpUlExtendedData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUlExtendedData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUlExtendedData" */ } @@ -69775,7 +48802,7 @@ decode_org_csapi_mm_TpUserLocationExtended_st(tvbuff_t *tvb _U_, packet_info *pi /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpLocationTriggerCamel_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_boolean(tree, hf_org_csapi_mm_TpLocationTriggerCamel_UpdateInsideVlr, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -69786,7 +48813,7 @@ decode_org_csapi_mm_TpLocationTriggerCamel_st(tvbuff_t *tvb _U_, packet_info *pi /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69794,102 +48821,99 @@ decode_org_csapi_mm_TpUserLocationCamel_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationCamel_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationCamel_StatusCode, tvb, *offset-4, 4, u_octet4); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationCamel_GeographicalPositionPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "org_csapi_mm_TpGeographicalPosition" */ - decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpGeographicalPosition" */ proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationCamel_TimestampPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationCamel_Timestamp"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationCamel_Timestamp); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationCamel_VlrNumberPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationCamel_LocationNumberPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationCamel_CellIdOrLaiPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationCamel_CellIdOrLai"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationCamel_CellIdOrLai); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserLocationEmergencyRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergencyRequest_UserAddressPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergencyRequest_NaEsrdPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergencyRequest_NaEsrd"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergencyRequest_NaEsrd); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergencyRequest_NaEsrkPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergencyRequest_NaEsrk"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergencyRequest_NaEsrk); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergencyRequest_ImeiPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergencyRequest_Imei"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergencyRequest_Imei); /* Begin struct "org_csapi_mm_TpLocationRequest" */ - decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationEmergency_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationEmergency_StatusCode, tvb, *offset-4, 4, u_octet4); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergency_UserIdPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergency_NaEsrdPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergency_NaEsrd"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergency_NaEsrd); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergency_NaEsrkPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergency_NaEsrk"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergency_NaEsrk); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergency_ImeiPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergency_Imei"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergency_Imei); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationEmergency_TriggeringEvent, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserLocationEmergency_TriggeringEvent, tvb, *offset-4, 4, u_octet4); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergency_GeographicalPositionPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "org_csapi_mm_TpGeographicalPosition" */ - decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpGeographicalPosition_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpGeographicalPosition" */ proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergency_AltitudePresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -69899,15 +48923,15 @@ decode_org_csapi_mm_TpUserLocationEmergency_st(tvbuff_t *tvb _U_, packet_info *p proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserLocationEmergency_TimestampPresent, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergency_Timestamp"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergency_Timestamp); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserLocationEmergency_UsedLocationMethod"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserLocationEmergency_UsedLocationMethod); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserStatus_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69915,25 +48939,22 @@ decode_org_csapi_mm_TpUserStatus_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatus_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatus_StatusCode, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatus_Status, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatus_Status, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatus_TerminalType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatus_TerminalType, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69942,12 +48963,12 @@ decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequest_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredStatusRequest_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequest_Users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredStatusRequest_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequest_Users); for (i_org_csapi_mm_TpTriggeredStatusRequest_Users=0; i_org_csapi_mm_TpTriggeredStatusRequest_Users < u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequest_Users; i_org_csapi_mm_TpTriggeredStatusRequest_Users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -69957,7 +48978,7 @@ decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69966,12 +48987,12 @@ decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tvb _U_, packe /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests); for (i_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests=0; i_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests < u_octet4_loop_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests; i_org_csapi_mm_TpTriggeredStatusRequestSetEntry_Requests++) { /* Begin struct "org_csapi_mm_TpTriggeredStatusRequest" */ - decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpTriggeredStatusRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpTriggeredStatusRequest" */ } @@ -69981,7 +49002,7 @@ decode_org_csapi_mm_TpTriggeredStatusRequestSetEntry_st(tvbuff_t *tvb _U_, packe /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -69990,17 +49011,17 @@ decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_, packet_info /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequest_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpPeriodicLocationRequest_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequest_Users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpPeriodicLocationRequest_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequest_Users); for (i_org_csapi_mm_TpPeriodicLocationRequest_Users=0; i_org_csapi_mm_TpPeriodicLocationRequest_Users < u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequest_Users; i_org_csapi_mm_TpPeriodicLocationRequest_Users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_mm_TpLocationRequest" */ - decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationRequest" */ proto_tree_add_uint(tree, hf_org_csapi_mm_TpPeriodicLocationRequest_ReportingInterval, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70010,7 +49031,7 @@ decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70019,12 +49040,12 @@ decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *tvb _U_, pack /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests); for (i_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests=0; i_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests < u_octet4_loop_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests; i_org_csapi_mm_TpPeriodicLocationRequestSetEntry_Requests++) { /* Begin struct "org_csapi_mm_TpPeriodicLocationRequest" */ - decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpPeriodicLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpPeriodicLocationRequest" */ } @@ -70034,7 +49055,7 @@ decode_org_csapi_mm_TpPeriodicLocationRequestSetEntry_st(tvbuff_t *tvb _U_, pack /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70043,17 +49064,17 @@ decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_, packet_info /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequest_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredLocationRequest_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequest_Users); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredLocationRequest_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequest_Users); for (i_org_csapi_mm_TpTriggeredLocationRequest_Users=0; i_org_csapi_mm_TpTriggeredLocationRequest_Users < u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequest_Users; i_org_csapi_mm_TpTriggeredLocationRequest_Users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } /* Begin struct "org_csapi_mm_TpLocationRequest" */ - decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpLocationRequest" */ proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredLocationRequest_AssignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70061,7 +49082,7 @@ decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70070,12 +49091,12 @@ decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *tvb _U_, pac /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests); for (i_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests=0; i_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests < u_octet4_loop_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests; i_org_csapi_mm_TpTriggeredLocationRequestSetEntry_Requests++) { /* Begin struct "org_csapi_mm_TpTriggeredLocationRequest" */ - decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpTriggeredLocationRequest_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpTriggeredLocationRequest" */ } @@ -70085,16 +49106,15 @@ decode_org_csapi_mm_TpTriggeredLocationRequestSetEntry_st(tvbuff_t *tvb _U_, pac /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusIndicatorExtended_UserStatusIndicator, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusIndicatorExtended_UserStatusIndicator, tvb, *offset-4, 4, u_octet4); proto_tree_add_boolean(tree, hf_org_csapi_mm_TpUserStatusIndicatorExtended_PDPContextActive, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -70102,83 +49122,78 @@ decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvbuff_t *tvb _U_, packet_i /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserInfo_UserName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserInfo_UserName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserInfo_Password"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserInfo_Password); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpNetworkStatusIndicator_CountryCode"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpNetworkStatusIndicator_CountryCode); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpNetworkStatusIndicator_MobileNetworkCode"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpNetworkStatusIndicator_MobileNetworkCode); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpNetworkStatusIndicator_AccessTechnology, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpNetworkStatusIndicator_AccessTechnology, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpNetworkStatusIndicator_RoamingStatus, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpNetworkStatusIndicator_RoamingStatus, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpUserStatusExtended_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserStatusExtended_UserID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserStatusExtended_UserID); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusExtended_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusExtended_StatusCode, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_mm_TpUserStatusIndicatorExtended" */ - decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserStatusIndicatorExtended_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserStatusIndicatorExtended" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusExtended_TerminalType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusExtended_TerminalType, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusExtended_AuthenticationStatus, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpUserStatusExtended_AuthenticationStatus, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_mm_TpNetworkStatusIndicator" */ - decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpNetworkStatusIndicator_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpNetworkStatusIndicator" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserStatusExtended_UserIPAddress"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserStatusExtended_UserIPAddress); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserStatusExtended_UserMSISDN"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserStatusExtended_UserMSISDN); /* Begin struct "org_csapi_mm_TpUserInfo" */ - decode_org_csapi_mm_TpUserInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mm_TpUserInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mm_TpUserInfo" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserStatusExtended_UserConnectionID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserStatusExtended_UserConnectionID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mm_TpUserStatusExtended_AccessPointName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mm_TpUserStatusExtended_AccessPointName); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70189,12 +49204,12 @@ decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvbuff_t *tvb _U_, packet_i proto_tree_add_uint(tree, hf_org_csapi_mm_TpBindingNotificationCriteria_NotificationCriteriaType, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet); for (i_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet=0; i_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet < u_octet4_loop_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet; i_org_csapi_mm_TpBindingNotificationCriteria_ContactAddressSet++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -70202,10 +49217,10 @@ decode_org_csapi_mm_TpBindingNotificationCriteria_st(tvbuff_t *tvb _U_, packet_i /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_termcap_TpTerminalCapabilities_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_termcap_TpTerminalCapabilities_TerminalCapabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_termcap_TpTerminalCapabilities_TerminalCapabilities); proto_tree_add_boolean(tree, hf_org_csapi_termcap_TpTerminalCapabilities_StatusCode, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -70213,24 +49228,23 @@ decode_org_csapi_termcap_TpTerminalCapabilities_st(tvbuff_t *tvb _U_, packet_inf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_termcap_TpTerminalCapabilityScope_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_termcap_TpTerminalCapabilityScope_ScopeType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_termcap_TpTerminalCapabilityScope_ScopeType, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_termcap_TpTerminalCapabilityScope_Scope"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_termcap_TpTerminalCapabilityScope_Scope); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpChargePerVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_dsc_TpChargePerVolume_InitialCharge, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70243,7 +49257,7 @@ decode_org_csapi_dsc_TpChargePerVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin union "org_csapi_dsc_TpDataSessionChargeOrder" */ @@ -70251,26 +49265,25 @@ decode_org_csapi_dsc_TpDataSessionChargePlan_st(tvbuff_t *tvb _U_, packet_info * decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_dsc_TpDataSessionChargeOrder" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_dsc_TpDataSessionChargePlan_Currency"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_dsc_TpDataSessionChargePlan_Currency); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_dsc_TpDataSessionChargePlan_AdditionalInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_dsc_TpDataSessionChargePlan_AdditionalInfo); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_dsc_TpDataSessionError_ErrorTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_dsc_TpDataSessionError_ErrorTime); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionError_ErrorType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionError_ErrorType, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_dsc_TpDataSessionAdditionalErrorInfo" */ @@ -70281,7 +49294,7 @@ decode_org_csapi_dsc_TpDataSessionError_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70289,22 +49302,21 @@ decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvbuff_t *tvb _U_, packet_inf /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventCriteria_DataSessionEventName, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventCriteria_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventCriteria_MonitorMode, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70312,26 +49324,24 @@ decode_org_csapi_dsc_TpDataSessionEventInfo_st(tvbuff_t *tvb _U_, packet_info *p /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventInfo_DataSessionEventName, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventInfo_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventInfo_MonitorMode, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventInfo_QoSClass, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventInfo_QoSClass, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReleaseCause_Value, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70342,22 +49352,20 @@ decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReport_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReport_MonitorMode, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_dsc_TpDataSessionReport_DataSessionEventTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_dsc_TpDataSessionReport_DataSessionEventTime); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReport_DataSessionReportType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReport_DataSessionReportType, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_dsc_TpDataSessionAdditionalReportInfo" */ @@ -70368,26 +49376,24 @@ decode_org_csapi_dsc_TpDataSessionReport_st(tvbuff_t *tvb _U_, packet_info *pinf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionReportRequest_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReportRequest_MonitorMode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReportRequest_MonitorMode, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReportRequest_DataSessionReportType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionReportRequest_DataSessionReportType, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionSuperviseVolume_VolumeQuantity, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70398,11 +49404,11 @@ decode_org_csapi_dsc_TpDataSessionSuperviseVolume_st(tvbuff_t *tvb _U_, packet_i /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_dsc_TpDataSessionEventCriteria" */ - decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionEventCriteria" */ proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionEventCriteriaResult_AssignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70410,27 +49416,26 @@ decode_org_csapi_dsc_TpDataSessionEventCriteriaResult_st(tvbuff_t *tvb _U_, pack /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_dsc_TpDataSessionIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionIdentifier_DataSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpGMSNewMessageArrivedInfo_FolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpGMSNewMessageArrivedInfo_FolderID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpGMSNewMessageArrivedInfo_MessageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpGMSNewMessageArrivedInfo_MessageID); proto_tree_add_uint(tree, hf_org_csapi_gms_TpGMSNewMessageArrivedInfo_NumberOfProperties, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70438,43 +49443,41 @@ decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_inf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpGMSNewMessageArrivedCriteria_AuthenticationInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpGMSNewMessageArrivedCriteria_AuthenticationInfo); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_gms_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMailboxIdentifier_SessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_gms_TpMailboxFolderIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMailboxFolderIdentifier_SessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagTimePeriod_duration, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70483,62 +49486,59 @@ decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagTimeOfDay_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagTimeOfDay_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagTimeOfDay_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagTimeOfDay_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagTimeOfDay_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagTimeOfDay_tag, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagTimeOfDay_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagTimeOfDay_value); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagString_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagString_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagString_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagString_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagString_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagString_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagString_tag, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagString_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagString_value); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagMonth_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagMonth_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagMonth_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagMonth_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagMonth_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagMonth_tag, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagMonth_value, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70546,20 +49546,19 @@ decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvbuff_t *tvb _U_, packet_info *pinf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagInt_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagInt_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagInt_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagInt_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagInt_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagInt_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagInt_tag, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagInt_value, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70567,43 +49566,40 @@ decode_org_csapi_cm_TpNameDescrpTagInt_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagDir_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagDir_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagDir_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagDir_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagDir_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDir_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDir_tag, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDir_value, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDir_value, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagDayOfWeek_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagDayOfWeek_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagDayOfWeek_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagDayOfWeek_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDayOfWeek_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDayOfWeek_tag, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDayOfWeek_value, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70611,286 +49607,280 @@ decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagDateTime_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagDateTime_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagDateTime_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagDateTime_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDateTime_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagDateTime_tag, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagDateTime_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagDateTime_value); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpLossDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagString" */ - decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpLoadDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagString" */ - decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpJitterDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagString" */ - decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpEndpoint_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpEndpoint_type, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpEndpoint_type, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpEndpoint_id"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpEndpoint_id); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpDelayDescriptor_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagInt" */ - decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagInt_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagInt" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagString" */ - decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagExcessLoadAction_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagExcessLoadAction_name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpNameDescrpTagExcessLoadAction_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpNameDescrpTagExcessLoadAction_description); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagExcessLoadAction_tag, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagExcessLoadAction_tag, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagExcessLoadAction_value, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpNameDescrpTagExcessLoadAction_value, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpValidityInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cm_TpNameDescrpTagDateTime" */ - decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagDateTime_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagDateTime" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */ - decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagTimeOfDay" */ - decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagTimeOfDay_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagTimeOfDay" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */ - decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagTimePeriod_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagTimePeriod" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagDayOfWeek" */ - decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagDayOfWeek_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagDayOfWeek" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagMonth" */ - decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagMonth_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagMonth" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagString" */ - decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpProvisionedQoSInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cm_TpDelayDescriptor" */ - decode_org_csapi_cm_TpDelayDescriptor_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpDelayDescriptor_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpDelayDescriptor" */ /* Begin struct "org_csapi_cm_TpLossDescriptor" */ - decode_org_csapi_cm_TpLossDescriptor_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpLossDescriptor_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpLossDescriptor" */ /* Begin struct "org_csapi_cm_TpJitterDescriptor" */ - decode_org_csapi_cm_TpJitterDescriptor_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpJitterDescriptor_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpJitterDescriptor" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagExcessLoadAction" */ - decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagExcessLoadAction_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagExcessLoadAction" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagString" */ - decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpPipeQoSInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cm_TpNameDescrpTagDir" */ - decode_org_csapi_cm_TpNameDescrpTagDir_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagDir_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpNameDescrpTagDir" */ /* Begin struct "org_csapi_cm_TpEndpoint" */ - decode_org_csapi_cm_TpEndpoint_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpEndpoint_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpEndpoint" */ /* Begin struct "org_csapi_cm_TpEndpoint" */ - decode_org_csapi_cm_TpEndpoint_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpEndpoint_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpEndpoint" */ /* Begin struct "org_csapi_cm_TpLoadDescriptor" */ - decode_org_csapi_cm_TpLoadDescriptor_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpLoadDescriptor_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpLoadDescriptor" */ /* Begin struct "org_csapi_cm_TpLoadDescriptor" */ - decode_org_csapi_cm_TpLoadDescriptor_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpLoadDescriptor_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cm_TpLoadDescriptor" */ /* Begin struct "org_csapi_cm_TpNameDescrpTagString" */ - decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cm_TpNameDescrpTagString_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpDsCodepoint_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpDsCodepoint_match"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpDsCodepoint_match); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpDsCodepoint_mask"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpDsCodepoint_mask); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cm_TpIPSubnet_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpIPSubnet_subnetNumber"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpIPSubnet_subnetNumber); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cm_TpIPSubnet_subnetMask"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cm_TpIPSubnet_subnetMask); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpIPSubnet_addressType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpIPSubnet_addressType, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cm_TpIPSubnet_IPVersionSupport, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cm_TpIPSubnet_IPVersionSupport, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_am_TpBalanceInfo_Currency"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_am_TpBalanceInfo_Currency); proto_tree_add_uint(tree, hf_org_csapi_am_TpBalanceInfo_ValuePartA, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -70898,33 +49888,32 @@ decode_org_csapi_am_TpBalanceInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree_add_uint(tree, hf_org_csapi_am_TpBalanceInfo_Exponent, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_am_TpBalanceInfo_AdditionalInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_am_TpBalanceInfo_AdditionalInfo); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpChargingEventInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventInfo_ChargingEventName, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventInfo_ChargingEventName, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_am_TpBalanceInfo" */ - decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpBalanceInfo" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_am_TpChargingEventInfo_ChargingEventTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_am_TpChargingEventInfo_ChargingEventTime); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpBalance_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70932,33 +49921,32 @@ decode_org_csapi_am_TpBalance_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_TpBalance_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_TpBalance_StatusCode, tvb, *offset-4, 4, u_octet4); /* Begin struct "org_csapi_am_TpBalanceInfo" */ - decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpTransactionHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_am_TpTransactionHistory_TransactionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_am_TpTransactionHistory_TimeStamp"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_am_TpTransactionHistory_TimeStamp); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_am_TpTransactionHistory_AdditionalInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_am_TpTransactionHistory_AdditionalInfo); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpChargingEventCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -70970,23 +49958,22 @@ decode_org_csapi_am_TpChargingEventCriteria_st(tvbuff_t *tvb _U_, packet_info *p /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_am_TpChargingEventCriteria_ChargingEvents = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventCriteria_ChargingEvents, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_TpChargingEventCriteria_ChargingEvents); + item = proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventCriteria_ChargingEvents, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_TpChargingEventCriteria_ChargingEvents); for (i_org_csapi_am_TpChargingEventCriteria_ChargingEvents=0; i_org_csapi_am_TpChargingEventCriteria_ChargingEvents < u_octet4_loop_org_csapi_am_TpChargingEventCriteria_ChargingEvents; i_org_csapi_am_TpChargingEventCriteria_ChargingEvents++) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventCriteria_ChargingEvents, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventCriteria_ChargingEvents, tvb, *offset-4, 4, u_octet4); } u_octet4_loop_org_csapi_am_TpChargingEventCriteria_Users = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventCriteria_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_TpChargingEventCriteria_Users); + item = proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventCriteria_Users, tvb,*offset-4, 4, u_octet4_loop_org_csapi_am_TpChargingEventCriteria_Users); for (i_org_csapi_am_TpChargingEventCriteria_Users=0; i_org_csapi_am_TpChargingEventCriteria_Users < u_octet4_loop_org_csapi_am_TpChargingEventCriteria_Users; i_org_csapi_am_TpChargingEventCriteria_Users++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -70994,11 +49981,11 @@ decode_org_csapi_am_TpChargingEventCriteria_st(tvbuff_t *tvb _U_, packet_info *p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_am_TpChargingEventCriteria" */ - decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpChargingEventCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_am_TpChargingEventCriteria" */ proto_tree_add_uint(tree, hf_org_csapi_am_TpChargingEventCriteriaResult_AssignmentID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -71006,7 +49993,7 @@ decode_org_csapi_am_TpChargingEventCriteriaResult_st(tvbuff_t *tvb _U_, packet_i /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpBalanceExpiryDate_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71014,37 +50001,36 @@ decode_org_csapi_am_TpBalanceExpiryDate_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_am_TpBalanceExpiryDate_StatusCode, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_am_TpBalanceExpiryDate_StatusCode, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_am_TpBalanceExpiryDate_ExpiryDate"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_am_TpBalanceExpiryDate_ExpiryDate); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_am_TpVoucher_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_am_TpVoucher_VoucherID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ /* Begin struct "org_csapi_am_TpBalanceInfo" */ - decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_am_TpBalanceInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpMerchantAccountID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_TpMerchantAccountID_MerchantID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_TpMerchantAccountID_MerchantID); proto_tree_add_uint(tree, hf_org_csapi_cs_TpMerchantAccountID_AccountID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -71052,7 +50038,7 @@ decode_org_csapi_cs_TpMerchantAccountID_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpCorrelationID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cs_TpCorrelationID_CorrelationID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -71063,7 +50049,7 @@ decode_org_csapi_cs_TpCorrelationID_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpAmount_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cs_TpAmount_Number, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -71074,23 +50060,23 @@ decode_org_csapi_cs_TpAmount_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpChargingPrice_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_TpChargingPrice_Currency"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_TpChargingPrice_Currency); /* Begin struct "org_csapi_cs_TpAmount" */ - decode_org_csapi_cs_TpAmount_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpAmount_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cs_TpAmount" */ - decode_org_csapi_cs_TpAmount_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpAmount_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpAmount" */ proto_tree_add_uint(tree, hf_org_csapi_cs_TpVolume_Unit, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -71098,12 +50084,11 @@ decode_org_csapi_cs_TpVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpChargingSessionID_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_TpChargingSessionID_ChargingSessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_uint(tree, hf_org_csapi_cs_TpChargingSessionID_RequestNumberFirstRequest, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -71112,20 +50097,20 @@ decode_org_csapi_cs_TpChargingSessionID_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpPriceVolume_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_cs_TpChargingPrice" */ - decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpChargingPrice_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cs_TpChargingPrice" */ /* Begin struct "org_csapi_cs_TpVolume" */ - decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cs_TpVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71133,10 +50118,10 @@ decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, packet_info * guint32 i_org_csapi_cs_TpApplicationDescription_AppInformation; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_TpApplicationDescription_Text"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_TpApplicationDescription_Text); u_octet4_loop_org_csapi_cs_TpApplicationDescription_AppInformation = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_TpApplicationDescription_AppInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_TpApplicationDescription_AppInformation); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_TpApplicationDescription_AppInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_TpApplicationDescription_AppInformation); for (i_org_csapi_cs_TpApplicationDescription_AppInformation=0; i_org_csapi_cs_TpApplicationDescription_AppInformation < u_octet4_loop_org_csapi_cs_TpApplicationDescription_AppInformation; i_org_csapi_cs_TpApplicationDescription_AppInformation++) { @@ -71151,7 +50136,7 @@ decode_org_csapi_cs_TpApplicationDescription_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_cs_TpChargingParameter_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_cs_TpChargingParameter_ParameterID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -71165,7 +50150,7 @@ decode_org_csapi_cs_TpChargingParameter_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71175,38 +50160,38 @@ decode_org_csapi_policy_TpPolicyEvent_st(tvbuff_t *tvb _U_, packet_info *pinfo _ proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyEvent_EventID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyEvent_TimeGenerated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyEvent_TimeGenerated); u_octet4_loop_org_csapi_policy_TpPolicyEvent_Attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyEvent_Attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyEvent_Attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyEvent_Attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyEvent_Attributes); for (i_org_csapi_policy_TpPolicyEvent_Attributes=0; i_org_csapi_policy_TpPolicyEvent_Attributes < u_octet4_loop_org_csapi_policy_TpPolicyEvent_Attributes; i_org_csapi_policy_TpPolicyEvent_Attributes++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyEvent_EventDefinitionName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyEvent_EventDefinitionName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyEvent_EventDomainName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyEvent_EventDomainName); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_policy_TpPolicyNameValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyNameValue_Name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyNameValue_Name); - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71217,16 +50202,16 @@ decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t *tvb _U_, pa /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names); for (i_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names=0; i_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names < u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names; i_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Names); } u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types); for (i_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types=0; i_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types < u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types; i_org_csapi_policy_TpPolicyType_TpPolicyRecordType_Types++) { @@ -71241,7 +50226,7 @@ decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvbuff_t *tvb _U_, pa /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71250,7 +50235,7 @@ decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvbuff_t *tvb _U_, pack /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType); for (i_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType=0; i_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType < u_octet4_loop_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType; i_org_csapi_policy_TpPolicyType_TpPolicyListType_ElementType++) { @@ -71265,28 +50250,27 @@ decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvbuff_t *tvb _U_, pack /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_policy_TpPolicyVar_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyVar_VarName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyVar_VarName); /* Begin union "org_csapi_policy_TpPolicyType" */ decode_org_csapi_policy_TpPolicyType_un(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* End union "org_csapi_policy_TpPolicyType" */ - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_policy_TpPolicyConditionListElement_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyConditionListElement_GroupNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); proto_tree_add_boolean(tree, hf_org_csapi_policy_TpPolicyConditionListElement_Negated, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -71295,39 +50279,38 @@ decode_org_csapi_policy_TpPolicyConditionListElement_st(tvbuff_t *tvb _U_, packe /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_policy_TpPolicyActionListElement_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyActionListElement_SequenceNumber, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAttributeDef_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAttributeDef_Name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAttributeDef_Name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAttributeDef_Type"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAttributeDef_Type); proto_tree_add_boolean(tree, hf_org_csapi_pam_TpPAMAttributeDef_IsStatic, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); proto_tree_add_boolean(tree, hf_org_csapi_pam_TpPAMAttributeDef_IsRevertOnExpiration, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAttribute_AttributeName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAttribute_AttributeName); /* Begin union "org_csapi_TpAttributeValue" */ @@ -71340,54 +50323,54 @@ decode_org_csapi_pam_TpPAMAttribute_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMPresenceData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMPresenceData_Name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMPresenceData_Name); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMPresenceData_subscriberStatus"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMPresenceData_subscriberStatus); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMPresenceData_networkStatus"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMPresenceData_networkStatus); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMPresenceData_communicationMeans"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMPresenceData_communicationMeans); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMPresenceData_subscriberProvidedLocation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMPresenceData_subscriberProvidedLocation); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMPresenceData_networkProvidedLocation"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMPresenceData_networkProvidedLocation); proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMPresenceData_Priority, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMPresenceData_otherInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMPresenceData_otherInfo); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAvailabilityProfile_PrivacyCode"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAvailabilityProfile_PrivacyCode); /* Begin struct "org_csapi_pam_TpPAMPresenceData" */ - decode_org_csapi_pam_TpPAMPresenceData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMPresenceData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMCommunicationContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMCommunicationContext_CommunicationCapability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMCommunicationContext_CommunicationCapability); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71401,12 +50384,12 @@ decode_org_csapi_pam_TpPAMContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, /* End union "org_csapi_pam_TpPAMContextData" */ u_octet4_loop_org_csapi_pam_TpPAMContext_AskerData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMContext_AskerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMContext_AskerData); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMContext_AskerData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMContext_AskerData); for (i_org_csapi_pam_TpPAMContext_AskerData=0; i_org_csapi_pam_TpPAMContext_AskerData < u_octet4_loop_org_csapi_pam_TpPAMContext_AskerData; i_org_csapi_pam_TpPAMContext_AskerData++) { /* Begin struct "org_csapi_TpAttribute" */ - decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAttribute_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAttribute" */ } @@ -71414,7 +50397,7 @@ decode_org_csapi_pam_TpPAMContext_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71425,25 +50408,24 @@ decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, packet_info *p guint32 i_org_csapi_pam_TpPAMAccessControlData_DenyList; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAccessControlData_DefaultPolicy, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAccessControlData_DefaultPolicy, tvb, *offset-4, 4, u_octet4); u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_AllowList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAccessControlData_AllowList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_AllowList); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAccessControlData_AllowList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_AllowList); for (i_org_csapi_pam_TpPAMAccessControlData_AllowList=0; i_org_csapi_pam_TpPAMAccessControlData_AllowList < u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_AllowList; i_org_csapi_pam_TpPAMAccessControlData_AllowList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAccessControlData_AllowList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAccessControlData_AllowList); } u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_DenyList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAccessControlData_DenyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_DenyList); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAccessControlData_DenyList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_DenyList); for (i_org_csapi_pam_TpPAMAccessControlData_DenyList=0; i_org_csapi_pam_TpPAMAccessControlData_DenyList < u_octet4_loop_org_csapi_pam_TpPAMAccessControlData_DenyList; i_org_csapi_pam_TpPAMAccessControlData_DenyList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAccessControlData_DenyList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAccessControlData_DenyList); } @@ -71451,7 +50433,7 @@ decode_org_csapi_pam_TpPAMAccessControlData_st(tvbuff_t *tvb _U_, packet_info *p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71460,11 +50442,11 @@ decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMICEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMICEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMICEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMICEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMICEventData_IdentityType); for (i_org_csapi_pam_TpPAMICEventData_IdentityType=0; i_org_csapi_pam_TpPAMICEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMICEventData_IdentityType; i_org_csapi_pam_TpPAMICEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMICEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMICEventData_IdentityType); } @@ -71472,7 +50454,7 @@ decode_org_csapi_pam_TpPAMICEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71481,11 +50463,11 @@ decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMICNotificationData_Identities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMICNotificationData_Identities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMICNotificationData_Identities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMICNotificationData_Identities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMICNotificationData_Identities); for (i_org_csapi_pam_TpPAMICNotificationData_Identities=0; i_org_csapi_pam_TpPAMICNotificationData_Identities < u_octet4_loop_org_csapi_pam_TpPAMICNotificationData_Identities; i_org_csapi_pam_TpPAMICNotificationData_Identities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMICNotificationData_Identities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMICNotificationData_Identities); } @@ -71493,7 +50475,7 @@ decode_org_csapi_pam_TpPAMICNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71504,20 +50486,20 @@ decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIDEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIDEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityName); for (i_org_csapi_pam_TpPAMIDEventData_IdentityName=0; i_org_csapi_pam_TpPAMIDEventData_IdentityName < u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityName; i_org_csapi_pam_TpPAMIDEventData_IdentityName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMIDEventData_IdentityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMIDEventData_IdentityName); } u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIDEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIDEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityType); for (i_org_csapi_pam_TpPAMIDEventData_IdentityType=0; i_org_csapi_pam_TpPAMIDEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMIDEventData_IdentityType; i_org_csapi_pam_TpPAMIDEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMIDEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMIDEventData_IdentityType); } @@ -71525,7 +50507,7 @@ decode_org_csapi_pam_TpPAMIDEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71534,11 +50516,11 @@ decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMIDNotificationData_Identities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIDNotificationData_Identities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIDNotificationData_Identities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIDNotificationData_Identities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIDNotificationData_Identities); for (i_org_csapi_pam_TpPAMIDNotificationData_Identities=0; i_org_csapi_pam_TpPAMIDNotificationData_Identities < u_octet4_loop_org_csapi_pam_TpPAMIDNotificationData_Identities; i_org_csapi_pam_TpPAMIDNotificationData_Identities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMIDNotificationData_Identities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMIDNotificationData_Identities); } @@ -71546,7 +50528,7 @@ decode_org_csapi_pam_TpPAMIDNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71557,20 +50539,20 @@ decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMGMCEventData_GroupName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMGMCEventData_GroupName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupName); for (i_org_csapi_pam_TpPAMGMCEventData_GroupName=0; i_org_csapi_pam_TpPAMGMCEventData_GroupName < u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupName; i_org_csapi_pam_TpPAMGMCEventData_GroupName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMGMCEventData_GroupName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMGMCEventData_GroupName); } u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMGMCEventData_GroupType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMGMCEventData_GroupType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupType); for (i_org_csapi_pam_TpPAMGMCEventData_GroupType=0; i_org_csapi_pam_TpPAMGMCEventData_GroupType < u_octet4_loop_org_csapi_pam_TpPAMGMCEventData_GroupType; i_org_csapi_pam_TpPAMGMCEventData_GroupType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMGMCEventData_GroupType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMGMCEventData_GroupType); } @@ -71578,7 +50560,7 @@ decode_org_csapi_pam_TpPAMGMCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71587,11 +50569,11 @@ decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_, packet_info /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMGMCNotificationData_Groups = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMGMCNotificationData_Groups, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMGMCNotificationData_Groups); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMGMCNotificationData_Groups, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMGMCNotificationData_Groups); for (i_org_csapi_pam_TpPAMGMCNotificationData_Groups=0; i_org_csapi_pam_TpPAMGMCNotificationData_Groups < u_octet4_loop_org_csapi_pam_TpPAMGMCNotificationData_Groups; i_org_csapi_pam_TpPAMGMCNotificationData_Groups++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMGMCNotificationData_Groups"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMGMCNotificationData_Groups); } @@ -71599,7 +50581,7 @@ decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71608,11 +50590,11 @@ decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMACEventData_AgentType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACEventData_AgentType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACEventData_AgentType); for (i_org_csapi_pam_TpPAMACEventData_AgentType=0; i_org_csapi_pam_TpPAMACEventData_AgentType < u_octet4_loop_org_csapi_pam_TpPAMACEventData_AgentType; i_org_csapi_pam_TpPAMACEventData_AgentType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACEventData_AgentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACEventData_AgentType); } @@ -71620,7 +50602,7 @@ decode_org_csapi_pam_TpPAMACEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71629,11 +50611,11 @@ decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMACNotificationData_Agents = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACNotificationData_Agents, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACNotificationData_Agents); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACNotificationData_Agents, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACNotificationData_Agents); for (i_org_csapi_pam_TpPAMACNotificationData_Agents=0; i_org_csapi_pam_TpPAMACNotificationData_Agents < u_octet4_loop_org_csapi_pam_TpPAMACNotificationData_Agents; i_org_csapi_pam_TpPAMACNotificationData_Agents++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACNotificationData_Agents"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACNotificationData_Agents); } @@ -71641,7 +50623,7 @@ decode_org_csapi_pam_TpPAMACNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71652,20 +50634,20 @@ decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMADEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMADEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentName); for (i_org_csapi_pam_TpPAMADEventData_AgentName=0; i_org_csapi_pam_TpPAMADEventData_AgentName < u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentName; i_org_csapi_pam_TpPAMADEventData_AgentName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMADEventData_AgentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMADEventData_AgentName); } u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMADEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMADEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentType); for (i_org_csapi_pam_TpPAMADEventData_AgentType=0; i_org_csapi_pam_TpPAMADEventData_AgentType < u_octet4_loop_org_csapi_pam_TpPAMADEventData_AgentType; i_org_csapi_pam_TpPAMADEventData_AgentType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMADEventData_AgentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMADEventData_AgentType); } @@ -71673,7 +50655,7 @@ decode_org_csapi_pam_TpPAMADEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71682,11 +50664,11 @@ decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMADNotificationData_Agents = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMADNotificationData_Agents, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMADNotificationData_Agents); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMADNotificationData_Agents, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMADNotificationData_Agents); for (i_org_csapi_pam_TpPAMADNotificationData_Agents=0; i_org_csapi_pam_TpPAMADNotificationData_Agents < u_octet4_loop_org_csapi_pam_TpPAMADNotificationData_Agents; i_org_csapi_pam_TpPAMADNotificationData_Agents++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMADNotificationData_Agents"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMADNotificationData_Agents); } @@ -71694,7 +50676,7 @@ decode_org_csapi_pam_TpPAMADNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71709,38 +50691,38 @@ decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityName); for (i_org_csapi_pam_TpPAMAAEventData_IdentityName=0; i_org_csapi_pam_TpPAMAAEventData_IdentityName < u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityName; i_org_csapi_pam_TpPAMAAEventData_IdentityName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAAEventData_IdentityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAAEventData_IdentityName); } u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityType); for (i_org_csapi_pam_TpPAMAAEventData_IdentityType=0; i_org_csapi_pam_TpPAMAAEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMAAEventData_IdentityType; i_org_csapi_pam_TpPAMAAEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAAEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAAEventData_IdentityType); } u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentName); for (i_org_csapi_pam_TpPAMAAEventData_AgentName=0; i_org_csapi_pam_TpPAMAAEventData_AgentName < u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentName; i_org_csapi_pam_TpPAMAAEventData_AgentName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAAEventData_AgentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAAEventData_AgentName); } u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAAEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentType); for (i_org_csapi_pam_TpPAMAAEventData_AgentType=0; i_org_csapi_pam_TpPAMAAEventData_AgentType < u_octet4_loop_org_csapi_pam_TpPAMAAEventData_AgentType; i_org_csapi_pam_TpPAMAAEventData_AgentType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAAEventData_AgentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAAEventData_AgentType); } @@ -71748,18 +50730,18 @@ decode_org_csapi_pam_TpPAMAAEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAANotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAANotificationData_Identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAANotificationData_Identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAANotificationData_Agent"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAANotificationData_Agent); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71774,38 +50756,38 @@ decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityName); for (i_org_csapi_pam_TpPAMAUEventData_IdentityName=0; i_org_csapi_pam_TpPAMAUEventData_IdentityName < u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityName; i_org_csapi_pam_TpPAMAUEventData_IdentityName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAUEventData_IdentityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAUEventData_IdentityName); } u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityType); for (i_org_csapi_pam_TpPAMAUEventData_IdentityType=0; i_org_csapi_pam_TpPAMAUEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMAUEventData_IdentityType; i_org_csapi_pam_TpPAMAUEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAUEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAUEventData_IdentityType); } u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentName); for (i_org_csapi_pam_TpPAMAUEventData_AgentName=0; i_org_csapi_pam_TpPAMAUEventData_AgentName < u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentName; i_org_csapi_pam_TpPAMAUEventData_AgentName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAUEventData_AgentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAUEventData_AgentName); } u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAUEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentType); for (i_org_csapi_pam_TpPAMAUEventData_AgentType=0; i_org_csapi_pam_TpPAMAUEventData_AgentType < u_octet4_loop_org_csapi_pam_TpPAMAUEventData_AgentType; i_org_csapi_pam_TpPAMAUEventData_AgentType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAUEventData_AgentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAUEventData_AgentType); } @@ -71813,18 +50795,18 @@ decode_org_csapi_pam_TpPAMAUEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAUNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAUNotificationData_Identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAUNotificationData_Identity); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAUNotificationData_Agent"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAUNotificationData_Agent); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71837,29 +50819,29 @@ decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityName); for (i_org_csapi_pam_TpPAMCCEventData_IdentityName=0; i_org_csapi_pam_TpPAMCCEventData_IdentityName < u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityName; i_org_csapi_pam_TpPAMCCEventData_IdentityName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMCCEventData_IdentityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMCCEventData_IdentityName); } u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityType); for (i_org_csapi_pam_TpPAMCCEventData_IdentityType=0; i_org_csapi_pam_TpPAMCCEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMCCEventData_IdentityType; i_org_csapi_pam_TpPAMCCEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMCCEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMCCEventData_IdentityType); } u_octet4_loop_org_csapi_pam_TpPAMCCEventData_Capabilities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCEventData_Capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCEventData_Capabilities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCEventData_Capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCEventData_Capabilities); for (i_org_csapi_pam_TpPAMCCEventData_Capabilities=0; i_org_csapi_pam_TpPAMCCEventData_Capabilities < u_octet4_loop_org_csapi_pam_TpPAMCCEventData_Capabilities; i_org_csapi_pam_TpPAMCCEventData_Capabilities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMCCEventData_Capabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMCCEventData_Capabilities); } @@ -71867,7 +50849,7 @@ decode_org_csapi_pam_TpPAMCCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71875,14 +50857,14 @@ decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, packet_info * guint32 i_org_csapi_pam_TpPAMCCNotificationData_Capabilities; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMCCNotificationData_Identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMCCNotificationData_Identity); u_octet4_loop_org_csapi_pam_TpPAMCCNotificationData_Capabilities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCNotificationData_Capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCNotificationData_Capabilities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMCCNotificationData_Capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMCCNotificationData_Capabilities); for (i_org_csapi_pam_TpPAMCCNotificationData_Capabilities=0; i_org_csapi_pam_TpPAMCCNotificationData_Capabilities < u_octet4_loop_org_csapi_pam_TpPAMCCNotificationData_Capabilities; i_org_csapi_pam_TpPAMCCNotificationData_Capabilities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMCCNotificationData_Capabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMCCNotificationData_Capabilities); } @@ -71890,7 +50872,7 @@ decode_org_csapi_pam_TpPAMCCNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71905,38 +50887,38 @@ decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentName); for (i_org_csapi_pam_TpPAMACPSEventData_AgentName=0; i_org_csapi_pam_TpPAMACPSEventData_AgentName < u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentName; i_org_csapi_pam_TpPAMACPSEventData_AgentName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACPSEventData_AgentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACPSEventData_AgentName); } u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentType); for (i_org_csapi_pam_TpPAMACPSEventData_AgentType=0; i_org_csapi_pam_TpPAMACPSEventData_AgentType < u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AgentType; i_org_csapi_pam_TpPAMACPSEventData_AgentType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACPSEventData_AgentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACPSEventData_AgentType); } u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_Capabilities = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_Capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_Capabilities); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_Capabilities, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_Capabilities); for (i_org_csapi_pam_TpPAMACPSEventData_Capabilities=0; i_org_csapi_pam_TpPAMACPSEventData_Capabilities < u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_Capabilities; i_org_csapi_pam_TpPAMACPSEventData_Capabilities++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACPSEventData_Capabilities"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACPSEventData_Capabilities); } u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AttributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AttributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AttributeNames); for (i_org_csapi_pam_TpPAMACPSEventData_AttributeNames=0; i_org_csapi_pam_TpPAMACPSEventData_AttributeNames < u_octet4_loop_org_csapi_pam_TpPAMACPSEventData_AttributeNames; i_org_csapi_pam_TpPAMACPSEventData_AttributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACPSEventData_AttributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACPSEventData_AttributeNames); } @@ -71946,7 +50928,7 @@ decode_org_csapi_pam_TpPAMACPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71954,16 +50936,16 @@ decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_, packet_info guint32 i_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACPSNotificationData_Agent"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACPSNotificationData_Agent); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACPSNotificationData_Capability"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACPSNotificationData_Capability); u_octet4_loop_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames); for (i_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames=0; i_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames < u_octet4_loop_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames; i_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMACPSNotificationData_AttributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMACPSNotificationData_AttributeNames); } @@ -71971,7 +50953,7 @@ decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -71984,29 +50966,29 @@ decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSEventData_AgentName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentName); for (i_org_csapi_pam_TpPAMAPSEventData_AgentName=0; i_org_csapi_pam_TpPAMAPSEventData_AgentName < u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentName; i_org_csapi_pam_TpPAMAPSEventData_AgentName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAPSEventData_AgentName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAPSEventData_AgentName); } u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSEventData_AgentType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentType); for (i_org_csapi_pam_TpPAMAPSEventData_AgentType=0; i_org_csapi_pam_TpPAMAPSEventData_AgentType < u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AgentType; i_org_csapi_pam_TpPAMAPSEventData_AgentType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAPSEventData_AgentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAPSEventData_AgentType); } u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AttributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AttributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AttributeNames); for (i_org_csapi_pam_TpPAMAPSEventData_AttributeNames=0; i_org_csapi_pam_TpPAMAPSEventData_AttributeNames < u_octet4_loop_org_csapi_pam_TpPAMAPSEventData_AttributeNames; i_org_csapi_pam_TpPAMAPSEventData_AttributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAPSEventData_AttributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAPSEventData_AttributeNames); } @@ -72016,7 +50998,7 @@ decode_org_csapi_pam_TpPAMAPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72024,14 +51006,14 @@ decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_, packet_info guint32 i_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAPSNotificationData_Agent"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAPSNotificationData_Agent); u_octet4_loop_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames); for (i_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames=0; i_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames < u_octet4_loop_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames; i_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAPSNotificationData_AttributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAPSNotificationData_AttributeNames); } @@ -72039,7 +51021,7 @@ decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72052,29 +51034,29 @@ decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityName); for (i_org_csapi_pam_TpPAMIPSEventData_IdentityName=0; i_org_csapi_pam_TpPAMIPSEventData_IdentityName < u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityName; i_org_csapi_pam_TpPAMIPSEventData_IdentityName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMIPSEventData_IdentityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMIPSEventData_IdentityName); } u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityType); for (i_org_csapi_pam_TpPAMIPSEventData_IdentityType=0; i_org_csapi_pam_TpPAMIPSEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_IdentityType; i_org_csapi_pam_TpPAMIPSEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMIPSEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMIPSEventData_IdentityType); } u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_AttributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_AttributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_AttributeNames); for (i_org_csapi_pam_TpPAMIPSEventData_AttributeNames=0; i_org_csapi_pam_TpPAMIPSEventData_AttributeNames < u_octet4_loop_org_csapi_pam_TpPAMIPSEventData_AttributeNames; i_org_csapi_pam_TpPAMIPSEventData_AttributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMIPSEventData_AttributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMIPSEventData_AttributeNames); } @@ -72084,7 +51066,7 @@ decode_org_csapi_pam_TpPAMIPSEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72092,15 +51074,15 @@ decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_, packet_info guint32 i_org_csapi_pam_TpPAMIPSNotificationData_Attributes; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMIPSNotificationData_Identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMIPSNotificationData_Identity); u_octet4_loop_org_csapi_pam_TpPAMIPSNotificationData_Attributes = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSNotificationData_Attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSNotificationData_Attributes); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMIPSNotificationData_Attributes, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMIPSNotificationData_Attributes); for (i_org_csapi_pam_TpPAMIPSNotificationData_Attributes=0; i_org_csapi_pam_TpPAMIPSNotificationData_Attributes < u_octet4_loop_org_csapi_pam_TpPAMIPSNotificationData_Attributes; i_org_csapi_pam_TpPAMIPSNotificationData_Attributes++) { /* Begin struct "org_csapi_pam_TpPAMPresenceData" */ - decode_org_csapi_pam_TpPAMPresenceData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMPresenceData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMPresenceData" */ } @@ -72108,7 +51090,7 @@ decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72123,39 +51105,39 @@ decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityName); for (i_org_csapi_pam_TpPAMAVCEventData_IdentityName=0; i_org_csapi_pam_TpPAMAVCEventData_IdentityName < u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityName; i_org_csapi_pam_TpPAMAVCEventData_IdentityName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAVCEventData_IdentityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAVCEventData_IdentityName); } u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityType); for (i_org_csapi_pam_TpPAMAVCEventData_IdentityType=0; i_org_csapi_pam_TpPAMAVCEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_IdentityType; i_org_csapi_pam_TpPAMAVCEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAVCEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAVCEventData_IdentityType); } u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_PAMContext = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_PAMContext, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_PAMContext); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_PAMContext, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_PAMContext); for (i_org_csapi_pam_TpPAMAVCEventData_PAMContext=0; i_org_csapi_pam_TpPAMAVCEventData_PAMContext < u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_PAMContext; i_org_csapi_pam_TpPAMAVCEventData_PAMContext++) { /* Begin struct "org_csapi_pam_TpPAMContext" */ - decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMContext_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMContext" */ } u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_AttributeNames = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_AttributeNames); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCEventData_AttributeNames, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_AttributeNames); for (i_org_csapi_pam_TpPAMAVCEventData_AttributeNames=0; i_org_csapi_pam_TpPAMAVCEventData_AttributeNames < u_octet4_loop_org_csapi_pam_TpPAMAVCEventData_AttributeNames; i_org_csapi_pam_TpPAMAVCEventData_AttributeNames++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAVCEventData_AttributeNames"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAVCEventData_AttributeNames); } @@ -72165,7 +51147,7 @@ decode_org_csapi_pam_TpPAMAVCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72173,15 +51155,15 @@ decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_, packet_info guint32 i_org_csapi_pam_TpPAMAVCNotificationData_Availability; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMAVCNotificationData_Identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMAVCNotificationData_Identity); u_octet4_loop_org_csapi_pam_TpPAMAVCNotificationData_Availability = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCNotificationData_Availability, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCNotificationData_Availability); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMAVCNotificationData_Availability, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMAVCNotificationData_Availability); for (i_org_csapi_pam_TpPAMAVCNotificationData_Availability=0; i_org_csapi_pam_TpPAMAVCNotificationData_Availability < u_octet4_loop_org_csapi_pam_TpPAMAVCNotificationData_Availability; i_org_csapi_pam_TpPAMAVCNotificationData_Availability++) { /* Begin struct "org_csapi_pam_TpPAMAvailabilityProfile" */ - decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAvailabilityProfile_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAvailabilityProfile" */ } @@ -72189,7 +51171,7 @@ decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72203,31 +51185,30 @@ decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_pam_TpPAMWCEventData_Events = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_Events, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCEventData_Events); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_Events, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCEventData_Events); for (i_org_csapi_pam_TpPAMWCEventData_Events=0; i_org_csapi_pam_TpPAMWCEventData_Events < u_octet4_loop_org_csapi_pam_TpPAMWCEventData_Events; i_org_csapi_pam_TpPAMWCEventData_Events++) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_Events, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_Events, tvb, *offset-4, 4, u_octet4); } u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityName = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityName); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_IdentityName, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityName); for (i_org_csapi_pam_TpPAMWCEventData_IdentityName=0; i_org_csapi_pam_TpPAMWCEventData_IdentityName < u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityName; i_org_csapi_pam_TpPAMWCEventData_IdentityName++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMWCEventData_IdentityName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMWCEventData_IdentityName); } u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityType = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityType); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCEventData_IdentityType, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityType); for (i_org_csapi_pam_TpPAMWCEventData_IdentityType=0; i_org_csapi_pam_TpPAMWCEventData_IdentityType < u_octet4_loop_org_csapi_pam_TpPAMWCEventData_IdentityType; i_org_csapi_pam_TpPAMWCEventData_IdentityType++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMWCEventData_IdentityType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMWCEventData_IdentityType); } @@ -72237,7 +51218,7 @@ decode_org_csapi_pam_TpPAMWCEventData_st(tvbuff_t *tvb _U_, packet_info *pinfo _ /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72246,22 +51227,20 @@ decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, packet_info * guint32 i_org_csapi_pam_TpPAMWCNotificationData_Watchers; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCNotificationData_Event, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCNotificationData_Event, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCNotificationData_ChangeType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCNotificationData_ChangeType, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMWCNotificationData_Identity"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMWCNotificationData_Identity); u_octet4_loop_org_csapi_pam_TpPAMWCNotificationData_Watchers = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCNotificationData_Watchers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCNotificationData_Watchers); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMWCNotificationData_Watchers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_pam_TpPAMWCNotificationData_Watchers); for (i_org_csapi_pam_TpPAMWCNotificationData_Watchers=0; i_org_csapi_pam_TpPAMWCNotificationData_Watchers < u_octet4_loop_org_csapi_pam_TpPAMWCNotificationData_Watchers; i_org_csapi_pam_TpPAMWCNotificationData_Watchers++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_pam_TpPAMWCNotificationData_Watchers"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_pam_TpPAMWCNotificationData_Watchers); } @@ -72269,16 +51248,15 @@ decode_org_csapi_pam_TpPAMWCNotificationData_st(tvbuff_t *tvb _U_, packet_info * /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_pam_TpPAMErrorInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMErrorInfo_Cause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMErrorInfo_Cause, tvb, *offset-4, 4, u_octet4); /* Begin union "org_csapi_pam_TpPAMNotificationInfo" */ @@ -72289,31 +51267,29 @@ decode_org_csapi_pam_TpPAMErrorInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpMailboxIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMailboxIdentifier_SessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMultiMediaMessagingIdentifier_SessionID, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpListMessagesCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_boolean(tree, hf_org_csapi_mmm_TpListMessagesCriteria_OnlyUnreadMessages, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -72322,7 +51298,7 @@ decode_org_csapi_mmm_TpListMessagesCriteria_st(tvbuff_t *tvb _U_, packet_info *p /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMailboxFolderStatusInformation_TotalMessageCount, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -72331,7 +51307,7 @@ decode_org_csapi_mmm_TpMailboxFolderStatusInformation_st(tvbuff_t *tvb _U_, pack /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72339,24 +51315,24 @@ decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, packet_info *pin guint32 i_org_csapi_mmm_TpMessageDescription_To; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageDescription_MessageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageDescription_MessageID); /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_mmm_TpMessageDescription_To = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageDescription_To, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageDescription_To); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageDescription_To, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageDescription_To); for (i_org_csapi_mmm_TpMessageDescription_To=0; i_org_csapi_mmm_TpMessageDescription_To < u_octet4_loop_org_csapi_mmm_TpMessageDescription_To; i_org_csapi_mmm_TpMessageDescription_To++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageDescription_Subject"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageDescription_Subject); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageDescription_ReceivedDate"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageDescription_ReceivedDate); proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageDescription_Size, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -72364,22 +51340,22 @@ decode_org_csapi_mmm_TpMessageDescription_st(tvbuff_t *tvb _U_, packet_info *pin /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpBodyPartDescription_ContentDescription"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpBodyPartDescription_ContentDescription); proto_tree_add_uint(tree, hf_org_csapi_mmm_TpBodyPartDescription_ContentSize, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpBodyPartDescription_ContentType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpBodyPartDescription_ContentType); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpBodyPartDescription_ContentTransferEncoding"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpBodyPartDescription_ContentTransferEncoding); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpBodyPartDescription_ContentID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpBodyPartDescription_ContentID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpBodyPartDescription_ContentDisposition"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpBodyPartDescription_ContentDisposition); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpBodyPartDescription_PartID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpBodyPartDescription_PartID); proto_tree_add_uint(tree, hf_org_csapi_mmm_TpBodyPartDescription_NestingLevel, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -72387,7 +51363,7 @@ decode_org_csapi_mmm_TpBodyPartDescription_st(tvbuff_t *tvb _U_, packet_info *pi /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpBodyPart_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72396,10 +51372,10 @@ decode_org_csapi_mmm_TpBodyPart_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pr /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_mmm_TpBodyPartDescription" */ - decode_org_csapi_mmm_TpBodyPartDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpBodyPartDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpBodyPartDescription" */ u_octet4_loop_org_csapi_mmm_TpBodyPart_BodyPartContent = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpBodyPart_BodyPartContent, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpBodyPart_BodyPartContent); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpBodyPart_BodyPartContent, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpBodyPart_BodyPartContent); for (i_org_csapi_mmm_TpBodyPart_BodyPartContent=0; i_org_csapi_mmm_TpBodyPart_BodyPartContent < u_octet4_loop_org_csapi_mmm_TpBodyPart_BodyPartContent; i_org_csapi_mmm_TpBodyPart_BodyPartContent++) { @@ -72411,48 +51387,46 @@ decode_org_csapi_mmm_TpBodyPart_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pr /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpGenericHeaderField_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpGenericHeaderField_FieldName"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpGenericHeaderField_FieldName); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpGenericHeaderField_FieldValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpGenericHeaderField_FieldValue); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpMessageInfoPropertyError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoPropertyError_MessagePropertyName, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoPropertyError_MessagePropertyName, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoPropertyError_Error, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoPropertyError_Error, tvb, *offset-4, 4, u_octet4); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_MailboxID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_MailboxID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_AuthenticationInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_AuthenticationInfo); } /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72462,22 +51436,22 @@ decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet guint32 i_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MailboxID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MailboxID); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpNewMailboxMessageArrivedInfo_FolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_FolderID); u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription); for (i_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription=0; i_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription < u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription; i_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_MessageDescription++) { /* Begin struct "org_csapi_mmm_TpMessageDescription" */ - decode_org_csapi_mmm_TpMessageDescription_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMessageDescription_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMessageDescription" */ } u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation); for (i_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation=0; i_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation < u_octet4_loop_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation; i_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_ExtendedHeaderInformation++) { @@ -72492,11 +51466,11 @@ decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpQueryStatusReport_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ proto_tree_add_uint(tree, hf_org_csapi_mmm_TpQueryStatusReport_ReportedStatus, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -72504,7 +51478,7 @@ decode_org_csapi_mmm_TpQueryStatusReport_st(tvbuff_t *tvb _U_, packet_info *pinf /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72517,32 +51491,32 @@ decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_, packet_info /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_ToAddressList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpTerminatingAddressList_ToAddressList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_ToAddressList); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpTerminatingAddressList_ToAddressList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_ToAddressList); for (i_org_csapi_mmm_TpTerminatingAddressList_ToAddressList=0; i_org_csapi_mmm_TpTerminatingAddressList_ToAddressList < u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_ToAddressList; i_org_csapi_mmm_TpTerminatingAddressList_ToAddressList++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_CcAddressList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpTerminatingAddressList_CcAddressList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_CcAddressList); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpTerminatingAddressList_CcAddressList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_CcAddressList); for (i_org_csapi_mmm_TpTerminatingAddressList_CcAddressList=0; i_org_csapi_mmm_TpTerminatingAddressList_CcAddressList < u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_CcAddressList; i_org_csapi_mmm_TpTerminatingAddressList_CcAddressList++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_BccAddressList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpTerminatingAddressList_BccAddressList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_BccAddressList); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpTerminatingAddressList_BccAddressList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_BccAddressList); for (i_org_csapi_mmm_TpTerminatingAddressList_BccAddressList=0; i_org_csapi_mmm_TpTerminatingAddressList_BccAddressList < u_octet4_loop_org_csapi_mmm_TpTerminatingAddressList_BccAddressList; i_org_csapi_mmm_TpTerminatingAddressList_BccAddressList++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -72550,14 +51524,14 @@ decode_org_csapi_mmm_TpTerminatingAddressList_st(tvbuff_t *tvb _U_, packet_info /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ /* Begin struct "org_csapi_TpAddressRange" */ - decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddressRange_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddressRange" */ proto_tree_add_boolean(tree, hf_org_csapi_mmm_TpNewMessageArrivedCriteria_CreateMultiMediaMessagingSession, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); @@ -72565,7 +51539,7 @@ decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvbuff_t *tvb _U_, packet_in /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72574,7 +51548,7 @@ decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *tvb _U_, pack /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria); for (i_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria=0; i_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria < u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria; i_org_csapi_mmm_TpMessagingNotificationRequested_EventCriteria++) { @@ -72591,7 +51565,7 @@ decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvbuff_t *tvb _U_, pack /* 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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72600,12 +51574,12 @@ decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvbuff_t *tvb _ /* Operation specific Variable declarations End */ u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet); for (i_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet=0; i_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet < u_octet4_loop_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet; i_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_MessagingNotificationRequestedSet++) { /* Begin struct "org_csapi_mmm_TpMessagingNotificationRequested" */ - decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMessagingNotificationRequested_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMessagingNotificationRequested" */ } @@ -72615,7 +51589,7 @@ decode_org_csapi_mmm_TpMessagingNotificationRequestedSetEntry_st(tvbuff_t *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_, gboolean stream_is_big_endian _U_) +decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -72628,20 +51602,20 @@ decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info * /* Operation specific Variable declarations End */ /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet); for (i_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet=0; i_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet < u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet; i_org_csapi_mmm_TpNewMessageArrivedInfo_DestinationAddressSet++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Message = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMessageArrivedInfo_Message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Message); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMessageArrivedInfo_Message, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Message); for (i_org_csapi_mmm_TpNewMessageArrivedInfo_Message=0; i_org_csapi_mmm_TpNewMessageArrivedInfo_Message < u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Message; i_org_csapi_mmm_TpNewMessageArrivedInfo_Message++) { @@ -72650,7 +51624,7 @@ decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info * } u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Headers = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMessageArrivedInfo_Headers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Headers); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpNewMessageArrivedInfo_Headers, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Headers); for (i_org_csapi_mmm_TpNewMessageArrivedInfo_Headers=0; i_org_csapi_mmm_TpNewMessageArrivedInfo_Headers < u_octet4_loop_org_csapi_mmm_TpNewMessageArrivedInfo_Headers; i_org_csapi_mmm_TpNewMessageArrivedInfo_Headers++) { @@ -72662,7 +51636,7 @@ decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info * } /* Begin struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ - decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpMultiMediaMessagingIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpMultiMediaMessagingIdentifier" */ } @@ -72670,6 +51644,7 @@ decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvbuff_t *tvb _U_, packet_info * 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -72680,9 +51655,8 @@ decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ * IDL Union Start - IDL:org/csapi/TpAoCOrder:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_TpAoCOrder_TpAoCOrder, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_TpAoCOrder_TpAoCOrder, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/TpCallAoCOrderCategory:1.0 @@ -72693,7 +51667,7 @@ decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ if (disc_s_TpAoCOrder == 0 ) { /* Begin struct "org_csapi_TpChargeAdviceInfo" */ - decode_org_csapi_TpChargeAdviceInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpChargeAdviceInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpChargeAdviceInfo" */ return; /* End Compare for this discriminant type */ } @@ -72701,14 +51675,14 @@ decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ if (disc_s_TpAoCOrder == 1 ) { /* Begin struct "org_csapi_TpChargePerTime" */ - decode_org_csapi_TpChargePerTime_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpChargePerTime_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpChargePerTime" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpAoCOrder == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAoCOrder_NetworkCharge"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAoCOrder_NetworkCharge); return; /* End Compare for this discriminant type */ } @@ -72719,6 +51693,7 @@ decode_org_csapi_TpAoCOrder_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -72731,9 +51706,8 @@ decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo * IDL Union Start - IDL:org/csapi/TpSimpleAttributeValue:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_TpSimpleAttributeValue_TpSimpleAttributeValue, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_TpSimpleAttributeValue_TpSimpleAttributeValue, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/TpSimpleAttributeTypeInfo:1.0 @@ -72781,7 +51755,7 @@ decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo if (disc_s_TpSimpleAttributeValue == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpSimpleAttributeValue_StringValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpSimpleAttributeValue_StringValue); return; /* End Compare for this discriminant type */ } @@ -72857,6 +51831,7 @@ decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -72867,9 +51842,8 @@ decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, * IDL Union Start - IDL:org/csapi/TpAttributeValue:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_TpAttributeValue_TpAttributeValue, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_TpAttributeValue_TpAttributeValue, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/TpAttributeTagInfo:1.0 @@ -72890,14 +51864,14 @@ decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpAttributeValue == 1 ) { /* Begin struct "org_csapi_TpStructuredAttributeValue" */ - decode_org_csapi_TpStructuredAttributeValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpStructuredAttributeValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpStructuredAttributeValue" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpAttributeValue == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_TpAttributeValue_XMLValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_TpAttributeValue_XMLValue); return; /* End Compare for this discriminant type */ } @@ -72908,6 +51882,7 @@ decode_org_csapi_TpAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -72932,9 +51907,8 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ * IDL Union Start - IDL:org/csapi/fw/TpFwEventCriteria:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_TpFwEventCriteria, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_TpFwEventCriteria, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/fw/TpFwEventName:1.0 @@ -72944,7 +51918,7 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_EventNameUndefined"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_EventNameUndefined); return; /* End Compare for this discriminant type */ } @@ -72952,11 +51926,11 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 1 ) { u_octet4_loop_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList); for (i_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList=0; i_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList < u_octet4_loop_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList; i_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_ServiceTypeNameList); } @@ -72966,11 +51940,11 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 2 ) { u_octet4_loop_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList); for (i_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList=0; i_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList < u_octet4_loop_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList; i_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_UnavailableServiceTypeNameList); } @@ -72980,11 +51954,11 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 3 ) { u_octet4_loop_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList); for (i_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList=0; i_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList < u_octet4_loop_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList; i_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_CompatibleServiceTypeNameList); } @@ -72994,11 +51968,11 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 4 ) { u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionCreatedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_SessionCreatedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionCreatedList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_SessionCreatedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionCreatedList); for (i_org_csapi_fw_TpFwEventCriteria_SessionCreatedList=0; i_org_csapi_fw_TpFwEventCriteria_SessionCreatedList < u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionCreatedList; i_org_csapi_fw_TpFwEventCriteria_SessionCreatedList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_SessionCreatedList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_SessionCreatedList); } @@ -73008,11 +51982,11 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 5 ) { u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList); for (i_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList=0; i_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList < u_octet4_loop_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList; i_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_SessionTerminatedList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_SessionTerminatedList); } @@ -73022,11 +51996,11 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 6 ) { u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementSignedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_AgreementSignedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementSignedList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_AgreementSignedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementSignedList); for (i_org_csapi_fw_TpFwEventCriteria_AgreementSignedList=0; i_org_csapi_fw_TpFwEventCriteria_AgreementSignedList < u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementSignedList; i_org_csapi_fw_TpFwEventCriteria_AgreementSignedList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_AgreementSignedList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_AgreementSignedList); } @@ -73036,11 +52010,11 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpFwEventCriteria == 7 ) { u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementEndedList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_AgreementEndedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementEndedList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventCriteria_AgreementEndedList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementEndedList); for (i_org_csapi_fw_TpFwEventCriteria_AgreementEndedList=0; i_org_csapi_fw_TpFwEventCriteria_AgreementEndedList < u_octet4_loop_org_csapi_fw_TpFwEventCriteria_AgreementEndedList; i_org_csapi_fw_TpFwEventCriteria_AgreementEndedList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventCriteria_AgreementEndedList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventCriteria_AgreementEndedList); } @@ -73053,6 +52027,7 @@ decode_org_csapi_fw_TpFwEventCriteria_un(tvbuff_t *tvb _U_, packet_info *pinfo _ 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73063,9 +52038,8 @@ decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, packet_info *p * IDL Union Start - IDL:org/csapi/fw/TpLoadStatisticEntityID:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticEntityID_TpLoadStatisticEntityID, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticEntityID_TpLoadStatisticEntityID, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/fw/TpLoadStatisticEntityType:1.0 @@ -73075,21 +52049,21 @@ decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, packet_info *p if (disc_s_TpLoadStatisticEntityID == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpLoadStatisticEntityID_FrameworkID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpLoadStatisticEntityID_FrameworkID); return; /* End Compare for this discriminant type */ } if (disc_s_TpLoadStatisticEntityID == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpLoadStatisticEntityID_ServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpLoadStatisticEntityID_ServiceID); return; /* End Compare for this discriminant type */ } if (disc_s_TpLoadStatisticEntityID == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpLoadStatisticEntityID_ClientAppID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpLoadStatisticEntityID_ClientAppID); return; /* End Compare for this discriminant type */ } @@ -73100,6 +52074,7 @@ decode_org_csapi_fw_TpLoadStatisticEntityID_un(tvbuff_t *tvb _U_, packet_info *p 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73110,9 +52085,8 @@ decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo * IDL Union Start - IDL:org/csapi/fw/TpLoadStatisticInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticInfo_TpLoadStatisticInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticInfo_TpLoadStatisticInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/fw/TpLoadStatisticInfoType:1.0 @@ -73123,16 +52097,15 @@ decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo if (disc_s_TpLoadStatisticInfo == 0 ) { /* Begin struct "org_csapi_fw_TpLoadStatisticData" */ - decode_org_csapi_fw_TpLoadStatisticData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpLoadStatisticData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticInfo_LoadStatisticError, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpLoadStatisticInfo_LoadStatisticError, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -73143,6 +52116,7 @@ decode_org_csapi_fw_TpLoadStatisticInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73153,9 +52127,8 @@ decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro * IDL Union Start - IDL:org/csapi/fw/TpDomainID:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpDomainID_TpDomainID, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpDomainID_TpDomainID, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/fw/TpDomainIDType:1.0 @@ -73165,35 +52138,35 @@ decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro if (disc_s_TpDomainID == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpDomainID_FwID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpDomainID_FwID); return; /* End Compare for this discriminant type */ } if (disc_s_TpDomainID == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpDomainID_ClientAppID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpDomainID_ClientAppID); return; /* End Compare for this discriminant type */ } if (disc_s_TpDomainID == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpDomainID_EntOpID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpDomainID_EntOpID); return; /* End Compare for this discriminant type */ } if (disc_s_TpDomainID == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpDomainID_ServiceID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpDomainID_ServiceID); return; /* End Compare for this discriminant type */ } if (disc_s_TpDomainID == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpDomainID_ServiceSupplierID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpDomainID_ServiceSupplierID); return; /* End Compare for this discriminant type */ } @@ -73204,6 +52177,7 @@ decode_org_csapi_fw_TpDomainID_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73214,9 +52188,8 @@ decode_org_csapi_fw_TpMigrationAdditionalInfo_un(tvbuff_t *tvb _U_, packet_info * IDL Union Start - IDL:org/csapi/fw/TpMigrationAdditionalInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpMigrationAdditionalInfo_TpMigrationAdditionalInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpMigrationAdditionalInfo_TpMigrationAdditionalInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/fw/TpMigrationAdditionalInfoType:1.0 @@ -73237,6 +52210,7 @@ decode_org_csapi_fw_TpMigrationAdditionalInfo_un(tvbuff_t *tvb _U_, packet_info 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73251,9 +52225,8 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, * IDL Union Start - IDL:org/csapi/fw/TpFwEventInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventInfo_TpFwEventInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventInfo_TpFwEventInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/fw/TpFwEventName:1.0 @@ -73263,7 +52236,7 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpFwEventInfo == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventInfo_EventNameUndefined"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventInfo_EventNameUndefined); return; /* End Compare for this discriminant type */ } @@ -73271,11 +52244,11 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpFwEventInfo == 1 ) { u_octet4_loop_org_csapi_fw_TpFwEventInfo_ServiceIDList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventInfo_ServiceIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventInfo_ServiceIDList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventInfo_ServiceIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventInfo_ServiceIDList); for (i_org_csapi_fw_TpFwEventInfo_ServiceIDList=0; i_org_csapi_fw_TpFwEventInfo_ServiceIDList < u_octet4_loop_org_csapi_fw_TpFwEventInfo_ServiceIDList; i_org_csapi_fw_TpFwEventInfo_ServiceIDList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventInfo_ServiceIDList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventInfo_ServiceIDList); } @@ -73285,11 +52258,11 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpFwEventInfo == 2 ) { u_octet4_loop_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList); + item = proto_tree_add_uint(tree, hf_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList, tvb,*offset-4, 4, u_octet4_loop_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList); for (i_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList=0; i_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList < u_octet4_loop_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList; i_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventInfo_UnavailableServiceIDList); } @@ -73299,21 +52272,21 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpFwEventInfo == 3 ) { /* Begin struct "org_csapi_fw_TpFwMigrationServiceAvailableInfo" */ - decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFwMigrationServiceAvailableInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFwMigrationServiceAvailableInfo" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpFwEventInfo == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventInfo_AppSessionCreated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventInfo_AppSessionCreated); return; /* End Compare for this discriminant type */ } if (disc_s_TpFwEventInfo == 5 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_fw_TpFwEventInfo_AppSessionTerminated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_fw_TpFwEventInfo_AppSessionTerminated); return; /* End Compare for this discriminant type */ } @@ -73321,7 +52294,7 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpFwEventInfo == 6 ) { /* Begin struct "org_csapi_fw_TpFwAgreementInfo" */ - decode_org_csapi_fw_TpFwAgreementInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFwAgreementInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFwAgreementInfo" */ return; /* End Compare for this discriminant type */ } @@ -73329,7 +52302,7 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpFwEventInfo == 7 ) { /* Begin struct "org_csapi_fw_TpFwAgreementInfo" */ - decode_org_csapi_fw_TpFwAgreementInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_fw_TpFwAgreementInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_fw_TpFwAgreementInfo" */ return; /* End Compare for this discriminant type */ } @@ -73340,6 +52313,7 @@ decode_org_csapi_fw_TpFwEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73350,9 +52324,8 @@ decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U * IDL Union Start - IDL:org/csapi/ui/TpUIVariableInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIVariableInfo_TpUIVariableInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIVariableInfo_TpUIVariableInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/ui/TpUIVariablePartType:1.0 @@ -73369,28 +52342,28 @@ decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpUIVariableInfo == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIVariableInfo_VariablePartAddress"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIVariableInfo_VariablePartAddress); return; /* End Compare for this discriminant type */ } if (disc_s_TpUIVariableInfo == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIVariableInfo_VariablePartTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIVariableInfo_VariablePartTime); return; /* End Compare for this discriminant type */ } if (disc_s_TpUIVariableInfo == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIVariableInfo_VariablePartDate"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIVariableInfo_VariablePartDate); return; /* End Compare for this discriminant type */ } if (disc_s_TpUIVariableInfo == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIVariableInfo_VariablePartPrice"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIVariableInfo_VariablePartPrice); return; /* End Compare for this discriminant type */ } @@ -73401,6 +52374,7 @@ decode_org_csapi_ui_TpUIVariableInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73419,9 +52393,8 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto * IDL Union Start - IDL:org/csapi/ui/TpUIInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_TpUIInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_TpUIInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/ui/TpUIInfoType:1.0 @@ -73438,14 +52411,14 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIInfo_InfoData"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIInfo_InfoData); return; /* End Compare for this discriminant type */ } if (disc_s_TpUIInfo == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIInfo_InfoAddress"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIInfo_InfoAddress); return; /* End Compare for this discriminant type */ } @@ -73453,7 +52426,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 3 ) { u_octet4_loop_org_csapi_ui_TpUIInfo_InfoBinData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoBinData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoBinData); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoBinData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoBinData); for (i_org_csapi_ui_TpUIInfo_InfoBinData=0; i_org_csapi_ui_TpUIInfo_InfoBinData < u_octet4_loop_org_csapi_ui_TpUIInfo_InfoBinData; i_org_csapi_ui_TpUIInfo_InfoBinData++) { @@ -73466,7 +52439,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIInfo_InfoUUEncData"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIInfo_InfoUUEncData); return; /* End Compare for this discriminant type */ } @@ -73474,7 +52447,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 5 ) { u_octet4_loop_org_csapi_ui_TpUIInfo_InfoMimeData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoMimeData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoMimeData); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoMimeData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoMimeData); for (i_org_csapi_ui_TpUIInfo_InfoMimeData=0; i_org_csapi_ui_TpUIInfo_InfoMimeData < u_octet4_loop_org_csapi_ui_TpUIInfo_InfoMimeData; i_org_csapi_ui_TpUIInfo_InfoMimeData++) { @@ -73488,7 +52461,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 6 ) { u_octet4_loop_org_csapi_ui_TpUIInfo_InfoWaveData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoWaveData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoWaveData); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoWaveData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoWaveData); for (i_org_csapi_ui_TpUIInfo_InfoWaveData=0; i_org_csapi_ui_TpUIInfo_InfoWaveData < u_octet4_loop_org_csapi_ui_TpUIInfo_InfoWaveData; i_org_csapi_ui_TpUIInfo_InfoWaveData++) { @@ -73502,7 +52475,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 7 ) { u_octet4_loop_org_csapi_ui_TpUIInfo_InfoAuData = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoAuData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoAuData); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUIInfo_InfoAuData, tvb,*offset-4, 4, u_octet4_loop_org_csapi_ui_TpUIInfo_InfoAuData); for (i_org_csapi_ui_TpUIInfo_InfoAuData=0; i_org_csapi_ui_TpUIInfo_InfoAuData < u_octet4_loop_org_csapi_ui_TpUIInfo_InfoAuData; i_org_csapi_ui_TpUIInfo_InfoAuData++) { @@ -73515,7 +52488,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 8 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_ui_TpUIInfo_InfoVXMLData"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_ui_TpUIInfo_InfoVXMLData); return; /* End Compare for this discriminant type */ } @@ -73523,7 +52496,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto if (disc_s_TpUIInfo == 9 ) { /* Begin struct "org_csapi_ui_TpUISynthesisInfoData" */ - decode_org_csapi_ui_TpUISynthesisInfoData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_ui_TpUISynthesisInfoData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_ui_TpUISynthesisInfoData" */ return; /* End Compare for this discriminant type */ } @@ -73534,6 +52507,7 @@ decode_org_csapi_ui_TpUIInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73544,9 +52518,8 @@ decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvbuff_t *tvb _U_, packet_info * IDL Union Start - IDL:org/csapi/cc/TpCallAdditionalErrorInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalErrorInfo_TpCallAdditionalErrorInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalErrorInfo_TpCallAdditionalErrorInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/TpCallErrorType:1.0 @@ -73556,9 +52529,8 @@ decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpCallAdditionalErrorInfo == 1 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalErrorInfo_CallErrorInvalidAddress, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalErrorInfo_CallErrorInvalidAddress, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -73576,6 +52548,7 @@ decode_org_csapi_cc_TpCallAdditionalErrorInfo_un(tvbuff_t *tvb _U_, packet_info 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73586,9 +52559,8 @@ decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvbuff_t *tvb _U_, packet_info * IDL Union Start - IDL:org/csapi/cc/TpCallLoadControlMechanism:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLoadControlMechanism_TpCallLoadControlMechanism, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallLoadControlMechanism_TpCallLoadControlMechanism, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/TpCallLoadControlMechanismType:1.0 @@ -73609,6 +52581,7 @@ decode_org_csapi_cc_TpCallLoadControlMechanism_un(tvbuff_t *tvb _U_, packet_info 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73619,9 +52592,8 @@ decode_org_csapi_cc_TpCallAdditionalTreatmentInfo_un(tvbuff_t *tvb _U_, packet_i * IDL Union Start - IDL:org/csapi/cc/TpCallAdditionalTreatmentInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalTreatmentInfo_TpCallAdditionalTreatmentInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalTreatmentInfo_TpCallAdditionalTreatmentInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/TpCallTreatmentType:1.0 @@ -73652,6 +52624,7 @@ decode_org_csapi_cc_TpCallAdditionalTreatmentInfo_un(tvbuff_t *tvb _U_, packet_i 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73662,9 +52635,8 @@ decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvbuff_t *tvb _U_, pack * IDL Union Start - IDL:org/csapi/cc/TpCallPartyToChargeAdditionalInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_TpCallPartyToChargeAdditionalInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_TpCallPartyToChargeAdditionalInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/TpCallPartyToChargeType:1.0 @@ -73675,7 +52647,7 @@ decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvbuff_t *tvb _U_, pack if (disc_s_TpCallPartyToChargeAdditionalInfo == 2 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -73693,6 +52665,7 @@ decode_org_csapi_cc_TpCallPartyToChargeAdditionalInfo_un(tvbuff_t *tvb _U_, pack 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73703,9 +52676,8 @@ decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo * IDL Union Start - IDL:org/csapi/cc/gccs/TpCallAppInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_TpCallAppInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_TpCallAppInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/gccs/TpCallAppInfoType:1.0 @@ -73722,36 +52694,32 @@ decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo if (disc_s_TpCallAppInfo == 2 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppNetworkAccessType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppNetworkAccessType, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 3 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppTeleService, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppTeleService, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 4 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppBearerService, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppBearerService, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 5 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppPartyCategory, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppPartyCategory, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -73759,14 +52727,14 @@ decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo if (disc_s_TpCallAppInfo == 6 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 7 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_TpCallAppInfo_CallAppGenericInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_TpCallAppInfo_CallAppGenericInfo); return; /* End Compare for this discriminant type */ } @@ -73774,7 +52742,7 @@ decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo if (disc_s_TpCallAppInfo == 8 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -73792,6 +52760,7 @@ decode_org_csapi_cc_gccs_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73802,9 +52771,8 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet * IDL Union Start - IDL:org/csapi/cc/gccs/TpCallAdditionalReportInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAdditionalReportInfo_TpCallAdditionalReportInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAdditionalReportInfo_TpCallAdditionalReportInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/gccs/TpCallReportType:1.0 @@ -73815,7 +52783,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet if (disc_s_TpCallAdditionalReportInfo == 4 ) { /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */ return; /* End Compare for this discriminant type */ } @@ -73823,7 +52791,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet if (disc_s_TpCallAdditionalReportInfo == 6 ) { /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */ return; /* End Compare for this discriminant type */ } @@ -73831,7 +52799,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet if (disc_s_TpCallAdditionalReportInfo == 7 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -73839,7 +52807,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet if (disc_s_TpCallAdditionalReportInfo == 8 ) { /* Begin struct "org_csapi_cc_TpCallServiceCode" */ - decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallServiceCode" */ return; /* End Compare for this discriminant type */ } @@ -73847,14 +52815,14 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet if (disc_s_TpCallAdditionalReportInfo == 9 ) { /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAdditionalReportInfo == 10 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_gccs_TpCallAdditionalReportInfo_QueueStatus"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_gccs_TpCallAdditionalReportInfo_QueueStatus); return; /* End Compare for this discriminant type */ } @@ -73862,7 +52830,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet if (disc_s_TpCallAdditionalReportInfo == 11 ) { /* Begin struct "org_csapi_cc_gccs_TpCallReleaseCause" */ - decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallReleaseCause" */ return; /* End Compare for this discriminant type */ } @@ -73880,6 +52848,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportInfo_un(tvbuff_t *tvb _U_, packet 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73890,9 +52859,8 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t *tvb _U_, pa * IDL Union Start - IDL:org/csapi/cc/gccs/TpCallAdditionalReportCriteria:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_TpCallAdditionalReportCriteria, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_TpCallAdditionalReportCriteria, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/gccs/TpCallReportType:1.0 @@ -73910,7 +52878,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t *tvb _U_, pa if (disc_s_TpCallAdditionalReportCriteria == 8 ) { /* Begin struct "org_csapi_cc_TpCallServiceCode" */ - decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallServiceCode" */ return; /* End Compare for this discriminant type */ } @@ -73928,6 +52896,7 @@ decode_org_csapi_cc_gccs_TpCallAdditionalReportCriteria_un(tvbuff_t *tvb _U_, pa 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -73938,9 +52907,8 @@ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info * IDL Union Start - IDL:org/csapi/cc/TpCallAdditionalEventInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalEventInfo_TpCallAdditionalEventInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalEventInfo_TpCallAdditionalEventInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/TpCallEventType:1.0 @@ -73951,7 +52919,7 @@ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpCallAdditionalEventInfo == 3 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -73959,7 +52927,7 @@ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpCallAdditionalEventInfo == 4 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -73967,25 +52935,23 @@ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpCallAdditionalEventInfo == 5 ) { /* Begin struct "org_csapi_cc_TpCallServiceCode" */ - decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalEventInfo_OriginatingReleaseCause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalEventInfo_OriginatingReleaseCause, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAdditionalEventInfo == 11 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalEventInfo_TerminatingReleaseCause, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAdditionalEventInfo_TerminatingReleaseCause, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -73993,7 +52959,7 @@ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpCallAdditionalEventInfo == 12 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74001,7 +52967,7 @@ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpCallAdditionalEventInfo == 13 ) { /* Begin struct "org_csapi_cc_TpCallServiceCode" */ - decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallServiceCode" */ return; /* End Compare for this discriminant type */ } @@ -74019,6 +52985,7 @@ decode_org_csapi_cc_TpCallAdditionalEventInfo_un(tvbuff_t *tvb _U_, packet_info 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74037,9 +53004,8 @@ decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _U_, packet_i * IDL Union Start - IDL:org/csapi/cc/TpAdditionalCallEventCriteria:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TpAdditionalCallEventCriteria, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TpAdditionalCallEventCriteria, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/TpCallEventType:1.0 @@ -74057,12 +53023,12 @@ decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _U_, packet_i if (disc_s_TpAdditionalCallEventCriteria == 5 ) { u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode); for (i_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode=0; i_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode < u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode; i_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingServiceCode++) { /* Begin struct "org_csapi_cc_TpCallServiceCode" */ - decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallServiceCode" */ } @@ -74072,13 +53038,12 @@ decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _U_, packet_i if (disc_s_TpAdditionalCallEventCriteria == 6 ) { u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet); for (i_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet=0; i_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet < u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet; i_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet++) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_OriginatingReleaseCauseSet, tvb, *offset-4, 4, u_octet4); } @@ -74088,13 +53053,12 @@ decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _U_, packet_i if (disc_s_TpAdditionalCallEventCriteria == 11 ) { u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet); for (i_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet=0; i_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet < u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet; i_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet++) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingReleaseCauseSet, tvb, *offset-4, 4, u_octet4); } @@ -74104,12 +53068,12 @@ decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _U_, packet_i if (disc_s_TpAdditionalCallEventCriteria == 13 ) { u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode); for (i_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode=0; i_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode < u_octet4_loop_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode; i_org_csapi_cc_TpAdditionalCallEventCriteria_TerminatingServiceCode++) { /* Begin struct "org_csapi_cc_TpCallServiceCode" */ - decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCallServiceCode_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCallServiceCode" */ } @@ -74129,6 +53093,7 @@ decode_org_csapi_cc_TpAdditionalCallEventCriteria_un(tvbuff_t *tvb _U_, packet_i 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74141,9 +53106,8 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, * IDL Union Start - IDL:org/csapi/cc/TpCallAppInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_TpCallAppInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_TpCallAppInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/TpCallAppInfoType:1.0 @@ -74160,36 +53124,32 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpCallAppInfo == 2 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppNetworkAccessType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppNetworkAccessType, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 3 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppTeleService, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppTeleService, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 4 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppBearerService, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppBearerService, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 5 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppPartyCategory, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppPartyCategory, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -74197,14 +53157,14 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpCallAppInfo == 6 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpCallAppInfo == 7 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cc_TpCallAppInfo_CallAppGenericInfo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cc_TpCallAppInfo_CallAppGenericInfo); return; /* End Compare for this discriminant type */ } @@ -74212,7 +53172,7 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpCallAppInfo == 8 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74220,7 +53180,7 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpCallAppInfo == 9 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74228,7 +53188,7 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpCallAppInfo == 10 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74243,12 +53203,12 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpCallAppInfo == 12 ) { u_octet4_loop_org_csapi_cc_TpCallAppInfo_CallAppCarrier = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppCarrier, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallAppInfo_CallAppCarrier); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_TpCallAppInfo_CallAppCarrier, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cc_TpCallAppInfo_CallAppCarrier); for (i_org_csapi_cc_TpCallAppInfo_CallAppCarrier=0; i_org_csapi_cc_TpCallAppInfo_CallAppCarrier < u_octet4_loop_org_csapi_cc_TpCallAppInfo_CallAppCarrier; i_org_csapi_cc_TpCallAppInfo_CallAppCarrier++) { /* Begin struct "org_csapi_cc_TpCarrier" */ - decode_org_csapi_cc_TpCarrier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_TpCarrier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_TpCarrier" */ } @@ -74268,6 +53228,7 @@ decode_org_csapi_cc_TpCallAppInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74278,9 +53239,8 @@ decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _U_, packet_i * IDL Union Start - IDL:org/csapi/cc/mpccs/TpAppMultiPartyCallBack:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_TpAppMultiPartyCallBack, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_TpAppMultiPartyCallBack, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/mpccs/TpAppMultiPartyCallBackRefType:1.0 @@ -74292,7 +53252,6 @@ decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _U_, packet_i get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - return; /* End Compare for this discriminant type */ } @@ -74300,14 +53259,13 @@ decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _U_, packet_i 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" */ - decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpAppCallLegCallBack_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpAppCallLegCallBack" */ return; /* End Compare for this discriminant type */ } @@ -74325,6 +53283,7 @@ decode_org_csapi_cc_mpccs_TpAppMultiPartyCallBack_un(tvbuff_t *tvb _U_, packet_i 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74335,9 +53294,8 @@ decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *tvb _U_, pac * IDL Union Start - IDL:org/csapi/cc/mmccs/TpMediaStreamDataTypeRequest:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_TpMediaStreamDataTypeRequest, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_TpMediaStreamDataTypeRequest, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/mmccs/TpMediaStreamDataTypeRequestType:1.0 @@ -74372,6 +53330,7 @@ decode_org_csapi_cc_mmccs_TpMediaStreamDataTypeRequest_un(tvbuff_t *tvb _U_, pac 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74382,9 +53341,8 @@ decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _U_, packet_i * IDL Union Start - IDL:org/csapi/cc/mmccs/TpAppMultiMediaCallBack:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_TpAppMultiMediaCallBack, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_TpAppMultiMediaCallBack, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/mmccs/TpAppMultiMediaCallBackRefType:1.0 @@ -74396,7 +53354,6 @@ decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _U_, packet_i get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - return; /* End Compare for this discriminant type */ } @@ -74404,14 +53361,13 @@ decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _U_, packet_i 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" */ - decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mmccs_TpAppMultiMediaCallLegCallBack" */ return; /* End Compare for this discriminant type */ } @@ -74429,6 +53385,7 @@ decode_org_csapi_cc_mmccs_TpAppMultiMediaCallBack_un(tvbuff_t *tvb _U_, packet_i 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74439,9 +53396,8 @@ decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_info *pinfo _ * IDL Union Start - IDL:org/csapi/cc/cccs/TpConfPolicy:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpConfPolicy_TpConfPolicy, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cc_cccs_TpConfPolicy_TpConfPolicy, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cc/cccs/TpConfPolicyType:1.0 @@ -74452,7 +53408,7 @@ decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpConfPolicy == 1 ) { /* Begin struct "org_csapi_cc_cccs_TpMonoMediaConfPolicy" */ - decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpMonoMediaConfPolicy_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpMonoMediaConfPolicy" */ return; /* End Compare for this discriminant type */ } @@ -74460,7 +53416,7 @@ decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpConfPolicy == 2 ) { /* Begin struct "org_csapi_cc_cccs_TpMultiMediaConfPolicy" */ - decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_cccs_TpMultiMediaConfPolicy_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_cccs_TpMultiMediaConfPolicy" */ return; /* End Compare for this discriminant type */ } @@ -74478,6 +53434,7 @@ decode_org_csapi_cc_cccs_TpConfPolicy_un(tvbuff_t *tvb _U_, packet_info *pinfo _ 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74488,9 +53445,8 @@ decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_info *pinfo _U * IDL Union Start - IDL:org/csapi/ui/TpUITargetObject:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_ui_TpUITargetObject_TpUITargetObject, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_ui_TpUITargetObject_TpUITargetObject, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/ui/TpUITargetObjectType:1.0 @@ -74501,7 +53457,7 @@ decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpUITargetObject == 0 ) { /* Begin struct "org_csapi_cc_gccs_TpCallIdentifier" */ - decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_gccs_TpCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_gccs_TpCallIdentifier" */ return; /* End Compare for this discriminant type */ } @@ -74509,7 +53465,7 @@ decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpUITargetObject == 1 ) { /* Begin struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ - decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpMultiPartyCallIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpMultiPartyCallIdentifier" */ return; /* End Compare for this discriminant type */ } @@ -74517,7 +53473,7 @@ decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpUITargetObject == 2 ) { /* Begin struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ - decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_cc_mpccs_TpCallLegIdentifier_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_cc_mpccs_TpCallLegIdentifier" */ return; /* End Compare for this discriminant type */ } @@ -74528,6 +53484,7 @@ decode_org_csapi_ui_TpUITargetObject_un(tvbuff_t *tvb _U_, packet_info *pinfo _U 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74538,9 +53495,8 @@ decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, * IDL Union Start - IDL:org/csapi/mm/TpBindingEntry:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mm_TpBindingEntry_TpBindingEntry, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mm_TpBindingEntry_TpBindingEntry, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mm/TpBindingEntryType:1.0 @@ -74558,7 +53514,7 @@ decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, if (disc_s_TpBindingEntry == 2 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74583,6 +53539,7 @@ decode_org_csapi_mm_TpBindingEntry_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74593,9 +53550,8 @@ decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_, packet_info * IDL Union Start - IDL:org/csapi/dsc/TpDataSessionChargeOrder:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionChargeOrder_TpDataSessionChargeOrder, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionChargeOrder_TpDataSessionChargeOrder, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/dsc/TpDataSessionChargeOrderCategory:1.0 @@ -74606,14 +53562,14 @@ decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpDataSessionChargeOrder == 0 ) { /* Begin struct "org_csapi_dsc_TpChargePerVolume" */ - decode_org_csapi_dsc_TpChargePerVolume_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpChargePerVolume_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpChargePerVolume" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpDataSessionChargeOrder == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_dsc_TpDataSessionChargeOrder_NetworkCharge"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_dsc_TpDataSessionChargeOrder_NetworkCharge); return; /* End Compare for this discriminant type */ } @@ -74624,6 +53580,7 @@ decode_org_csapi_dsc_TpDataSessionChargeOrder_un(tvbuff_t *tvb _U_, packet_info 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74634,9 +53591,8 @@ decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvbuff_t *tvb _U_, pack * IDL Union Start - IDL:org/csapi/dsc/TpDataSessionAdditionalErrorInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_TpDataSessionAdditionalErrorInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_TpDataSessionAdditionalErrorInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/dsc/TpDataSessionErrorType:1.0 @@ -74646,9 +53602,8 @@ decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvbuff_t *tvb _U_, pack if (disc_s_TpDataSessionAdditionalErrorInfo == 1 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_DataSessionErrorInvalidAddress, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_DataSessionErrorInvalidAddress, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -74666,6 +53621,7 @@ decode_org_csapi_dsc_TpDataSessionAdditionalErrorInfo_un(tvbuff_t *tvb _U_, pack 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74676,9 +53632,8 @@ decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvbuff_t *tvb _U_, pac * IDL Union Start - IDL:org/csapi/dsc/TpDataSessionAdditionalReportInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionAdditionalReportInfo_TpDataSessionAdditionalReportInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_dsc_TpDataSessionAdditionalReportInfo_TpDataSessionAdditionalReportInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/dsc/TpDataSessionReportType:1.0 @@ -74689,7 +53644,7 @@ decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvbuff_t *tvb _U_, pac if (disc_s_TpDataSessionAdditionalReportInfo == 2 ) { /* Begin struct "org_csapi_dsc_TpDataSessionReleaseCause" */ - decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_dsc_TpDataSessionReleaseCause_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_dsc_TpDataSessionReleaseCause" */ return; /* End Compare for this discriminant type */ } @@ -74707,6 +53662,7 @@ decode_org_csapi_dsc_TpDataSessionAdditionalReportInfo_un(tvbuff_t *tvb _U_, pac 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74717,9 +53673,8 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi * IDL Union Start - IDL:org/csapi/gms/TpMessageInfoProperty:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_TpMessageInfoProperty, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_TpMessageInfoProperty, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/gms/TpMessageInfoPropertyName:1.0 @@ -74729,35 +53684,35 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMessageInfoProperty_MessagingMessageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageID); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMessageInfoProperty_MessagingMessageSubject"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageSubject); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMessageInfoProperty_MessagingMessageDateSent"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageDateSent); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMessageInfoProperty_MessagingMessageDateReceived"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageDateReceived); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 5 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMessageInfoProperty_MessagingMessageDateChanged"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageDateChanged); return; /* End Compare for this discriminant type */ } @@ -74765,7 +53720,7 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 6 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74773,7 +53728,7 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 7 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74781,7 +53736,7 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 8 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74789,7 +53744,7 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 9 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -74803,34 +53758,31 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 11 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessagePriority, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessagePriority, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 12 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageFormat, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageFormat, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 13 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMessageInfoProperty_MessagingMessageFolder"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageFolder); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 14 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageStatus, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessageInfoProperty_MessagingMessageStatus, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -74848,6 +53800,7 @@ decode_org_csapi_gms_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74858,9 +53811,8 @@ decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi * IDL Union Start - IDL:org/csapi/gms/TpMailboxInfoProperty:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMailboxInfoProperty_TpMailboxInfoProperty, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpMailboxInfoProperty_TpMailboxInfoProperty, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/gms/TpMailboxInfoPropertyName:1.0 @@ -74871,35 +53823,35 @@ decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMailboxInfoProperty == 1 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpMailboxInfoProperty == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxOwner"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxOwner); return; /* End Compare for this discriminant type */ } if (disc_s_TpMailboxInfoProperty == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxFolder"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxFolder); return; /* End Compare for this discriminant type */ } if (disc_s_TpMailboxInfoProperty == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxDateCreated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxDateCreated); return; /* End Compare for this discriminant type */ } if (disc_s_TpMailboxInfoProperty == 5 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxDateChanged"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMailboxInfoProperty_MessagingMailboxDateChanged); return; /* End Compare for this discriminant type */ } @@ -74917,6 +53869,7 @@ decode_org_csapi_gms_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74927,9 +53880,8 @@ decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin * IDL Union Start - IDL:org/csapi/gms/TpMessagingEventInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessagingEventInfo_TpMessagingEventInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessagingEventInfo_TpMessagingEventInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/gms/TpMessagingEventName:1.0 @@ -74939,7 +53891,7 @@ decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessagingEventInfo == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpMessagingEventInfo_EventNameUndefined"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpMessagingEventInfo_EventNameUndefined); return; /* End Compare for this discriminant type */ } @@ -74947,7 +53899,7 @@ decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessagingEventInfo == 1 ) { /* Begin struct "org_csapi_gms_TpGMSNewMessageArrivedInfo" */ - decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_gms_TpGMSNewMessageArrivedInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_gms_TpGMSNewMessageArrivedInfo" */ return; /* End Compare for this discriminant type */ } @@ -74958,6 +53910,7 @@ decode_org_csapi_gms_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -74968,9 +53921,8 @@ decode_org_csapi_gms_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info * IDL Union Start - IDL:org/csapi/gms/TpMessagingEventCriteria:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessagingEventCriteria_TpMessagingEventCriteria, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpMessagingEventCriteria_TpMessagingEventCriteria, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/gms/TpMessagingEventName:1.0 @@ -74981,7 +53933,7 @@ decode_org_csapi_gms_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpMessagingEventCriteria == 1 ) { /* Begin struct "org_csapi_gms_TpGMSNewMessageArrivedCriteria" */ - decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_gms_TpGMSNewMessageArrivedCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_gms_TpGMSNewMessageArrivedCriteria" */ return; /* End Compare for this discriminant type */ } @@ -74999,6 +53951,7 @@ decode_org_csapi_gms_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75009,9 +53962,8 @@ decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pin * IDL Union Start - IDL:org/csapi/gms/TpFolderInfoProperty:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_gms_TpFolderInfoProperty_TpFolderInfoProperty, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_gms_TpFolderInfoProperty_TpFolderInfoProperty, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/gms/TpFolderInfoPropertyName:1.0 @@ -75021,35 +53973,35 @@ decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpFolderInfoProperty == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpFolderInfoProperty_MessagingFolderID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpFolderInfoProperty_MessagingFolderID); return; /* End Compare for this discriminant type */ } if (disc_s_TpFolderInfoProperty == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpFolderInfoProperty_MessagingFolderMessage"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpFolderInfoProperty_MessagingFolderMessage); return; /* End Compare for this discriminant type */ } if (disc_s_TpFolderInfoProperty == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpFolderInfoProperty_MessagingFolderSubfolder"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpFolderInfoProperty_MessagingFolderSubfolder); return; /* End Compare for this discriminant type */ } if (disc_s_TpFolderInfoProperty == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpFolderInfoProperty_MessagingFolderDateCreated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpFolderInfoProperty_MessagingFolderDateCreated); return; /* End Compare for this discriminant type */ } if (disc_s_TpFolderInfoProperty == 5 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_gms_TpFolderInfoProperty_MessagingFolderDateChanged"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_gms_TpFolderInfoProperty_MessagingFolderDateChanged); return; /* End Compare for this discriminant type */ } @@ -75067,6 +54019,7 @@ decode_org_csapi_gms_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pin 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75079,9 +54032,8 @@ decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, packet_info * * IDL Union Start - IDL:org/csapi/cs/TpChargingParameterValue:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_TpChargingParameterValue_TpChargingParameterValue, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_TpChargingParameterValue_TpChargingParameterValue, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cs/TpChargingParameterValueType:1.0 @@ -75105,7 +54057,7 @@ decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, packet_info * if (disc_s_TpChargingParameterValue == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_TpChargingParameterValue_StringValue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_TpChargingParameterValue_StringValue); return; /* End Compare for this discriminant type */ } @@ -75120,7 +54072,7 @@ decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, packet_info * if (disc_s_TpChargingParameterValue == 4 ) { u_octet4_loop_org_csapi_cs_TpChargingParameterValue_OctetValue = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_TpChargingParameterValue_OctetValue, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_TpChargingParameterValue_OctetValue); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_TpChargingParameterValue_OctetValue, tvb,*offset-4, 4, u_octet4_loop_org_csapi_cs_TpChargingParameterValue_OctetValue); for (i_org_csapi_cs_TpChargingParameterValue_OctetValue=0; i_org_csapi_cs_TpChargingParameterValue_OctetValue < u_octet4_loop_org_csapi_cs_TpChargingParameterValue_OctetValue; i_org_csapi_cs_TpChargingParameterValue_OctetValue++) { @@ -75137,6 +54089,7 @@ decode_org_csapi_cs_TpChargingParameterValue_un(tvbuff_t *tvb _U_, packet_info * 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75147,9 +54100,8 @@ decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_info *pinfo _U * IDL Union Start - IDL:org/csapi/cs/TpAppInformation:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_cs_TpAppInformation_TpAppInformation, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_cs_TpAppInformation_TpAppInformation, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/cs/TpAppInformationType:1.0 @@ -75159,7 +54111,7 @@ decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpAppInformation == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_cs_TpAppInformation_Timestamp"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_cs_TpAppInformation_Timestamp); return; /* End Compare for this discriminant type */ } @@ -75170,6 +54122,7 @@ decode_org_csapi_cs_TpAppInformation_un(tvbuff_t *tvb _U_, packet_info *pinfo _U 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75180,9 +54133,8 @@ decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_info *pinfo _U * IDL Union Start - IDL:org/csapi/policy/TpPolicyType:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_TpPolicyType, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/policy/TpPolicyTypeInfo:1.0 @@ -75192,9 +54144,8 @@ decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpPolicyType == 0 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_SimpleType, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_policy_TpPolicyType_SimpleType, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -75202,7 +54153,7 @@ decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpPolicyType == 1 ) { /* Begin struct "org_csapi_policy_TpPolicyType_TpPolicyRecordType" */ - decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyType_TpPolicyRecordType_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyType_TpPolicyRecordType" */ return; /* End Compare for this discriminant type */ } @@ -75210,21 +54161,21 @@ decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_info *pinfo _U if (disc_s_TpPolicyType == 2 ) { /* Begin struct "org_csapi_policy_TpPolicyType_TpPolicyListType" */ - decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_policy_TpPolicyType_TpPolicyListType_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_policy_TpPolicyType_TpPolicyListType" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpPolicyType == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyType_StructuredType"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyType_StructuredType); return; /* End Compare for this discriminant type */ } if (disc_s_TpPolicyType == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_policy_TpPolicyType_XMLString"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_policy_TpPolicyType_XMLString); return; /* End Compare for this discriminant type */ } @@ -75235,6 +54186,7 @@ decode_org_csapi_policy_TpPolicyType_un(tvbuff_t *tvb _U_, packet_info *pinfo _U 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75245,9 +54197,8 @@ decode_org_csapi_pam_TpPAMContextData_un(tvbuff_t *tvb _U_, packet_info *pinfo _ * IDL Union Start - IDL:org/csapi/pam/TpPAMContextData:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMContextData_TpPAMContextData, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMContextData_TpPAMContextData, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMContextName:1.0 @@ -75258,7 +54209,7 @@ decode_org_csapi_pam_TpPAMContextData_un(tvbuff_t *tvb _U_, packet_info *pinfo _ if (disc_s_TpPAMContextData == 1 ) { /* Begin struct "org_csapi_pam_TpPAMCommunicationContext" */ - decode_org_csapi_pam_TpPAMCommunicationContext_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMCommunicationContext_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMCommunicationContext" */ return; /* End Compare for this discriminant type */ } @@ -75276,6 +54227,7 @@ decode_org_csapi_pam_TpPAMContextData_un(tvbuff_t *tvb _U_, packet_info *pinfo _ 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75286,9 +54238,8 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ * IDL Union Start - IDL:org/csapi/pam/TpPAMEventInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMEventInfo_TpPAMEventInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMEventInfo_TpPAMEventInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMEventName:1.0 @@ -75299,7 +54250,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 0 ) { /* Begin struct "org_csapi_pam_TpPAMIPSEventData" */ - decode_org_csapi_pam_TpPAMIPSEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMIPSEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMIPSEventData" */ return; /* End Compare for this discriminant type */ } @@ -75307,7 +54258,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 1 ) { /* Begin struct "org_csapi_pam_TpPAMAVCEventData" */ - decode_org_csapi_pam_TpPAMAVCEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAVCEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAVCEventData" */ return; /* End Compare for this discriminant type */ } @@ -75315,7 +54266,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 2 ) { /* Begin struct "org_csapi_pam_TpPAMWCEventData" */ - decode_org_csapi_pam_TpPAMWCEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMWCEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMWCEventData" */ return; /* End Compare for this discriminant type */ } @@ -75323,7 +54274,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 3 ) { /* Begin struct "org_csapi_pam_TpPAMICEventData" */ - decode_org_csapi_pam_TpPAMICEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMICEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMICEventData" */ return; /* End Compare for this discriminant type */ } @@ -75331,7 +54282,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 4 ) { /* Begin struct "org_csapi_pam_TpPAMIDEventData" */ - decode_org_csapi_pam_TpPAMIDEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMIDEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMIDEventData" */ return; /* End Compare for this discriminant type */ } @@ -75339,7 +54290,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 5 ) { /* Begin struct "org_csapi_pam_TpPAMGMCEventData" */ - decode_org_csapi_pam_TpPAMGMCEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMGMCEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMGMCEventData" */ return; /* End Compare for this discriminant type */ } @@ -75347,7 +54298,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 6 ) { /* Begin struct "org_csapi_pam_TpPAMACEventData" */ - decode_org_csapi_pam_TpPAMACEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMACEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMACEventData" */ return; /* End Compare for this discriminant type */ } @@ -75355,7 +54306,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 7 ) { /* Begin struct "org_csapi_pam_TpPAMADEventData" */ - decode_org_csapi_pam_TpPAMADEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMADEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMADEventData" */ return; /* End Compare for this discriminant type */ } @@ -75363,7 +54314,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 8 ) { /* Begin struct "org_csapi_pam_TpPAMAAEventData" */ - decode_org_csapi_pam_TpPAMAAEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAAEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAAEventData" */ return; /* End Compare for this discriminant type */ } @@ -75371,7 +54322,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 9 ) { /* Begin struct "org_csapi_pam_TpPAMAUEventData" */ - decode_org_csapi_pam_TpPAMAUEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAUEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAUEventData" */ return; /* End Compare for this discriminant type */ } @@ -75379,7 +54330,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 10 ) { /* Begin struct "org_csapi_pam_TpPAMCCEventData" */ - decode_org_csapi_pam_TpPAMCCEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMCCEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMCCEventData" */ return; /* End Compare for this discriminant type */ } @@ -75387,7 +54338,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 11 ) { /* Begin struct "org_csapi_pam_TpPAMACPSEventData" */ - decode_org_csapi_pam_TpPAMACPSEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMACPSEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMACPSEventData" */ return; /* End Compare for this discriminant type */ } @@ -75395,7 +54346,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpPAMEventInfo == 12 ) { /* Begin struct "org_csapi_pam_TpPAMAPSEventData" */ - decode_org_csapi_pam_TpPAMAPSEventData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAPSEventData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAPSEventData" */ return; /* End Compare for this discriminant type */ } @@ -75406,6 +54357,7 @@ decode_org_csapi_pam_TpPAMEventInfo_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75416,9 +54368,8 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi * IDL Union Start - IDL:org/csapi/pam/TpPAMNotificationInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMNotificationInfo_TpPAMNotificationInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMNotificationInfo_TpPAMNotificationInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMEventName:1.0 @@ -75429,7 +54380,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 0 ) { /* Begin struct "org_csapi_pam_TpPAMIPSNotificationData" */ - decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMIPSNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMIPSNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75437,7 +54388,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 1 ) { /* Begin struct "org_csapi_pam_TpPAMAVCNotificationData" */ - decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAVCNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAVCNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75445,7 +54396,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 2 ) { /* Begin struct "org_csapi_pam_TpPAMWCNotificationData" */ - decode_org_csapi_pam_TpPAMWCNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMWCNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMWCNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75453,7 +54404,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 3 ) { /* Begin struct "org_csapi_pam_TpPAMICNotificationData" */ - decode_org_csapi_pam_TpPAMICNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMICNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMICNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75461,7 +54412,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 4 ) { /* Begin struct "org_csapi_pam_TpPAMIDNotificationData" */ - decode_org_csapi_pam_TpPAMIDNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMIDNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMIDNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75469,7 +54420,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 5 ) { /* Begin struct "org_csapi_pam_TpPAMGMCNotificationData" */ - decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMGMCNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMGMCNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75477,7 +54428,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 6 ) { /* Begin struct "org_csapi_pam_TpPAMACNotificationData" */ - decode_org_csapi_pam_TpPAMACNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMACNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMACNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75485,7 +54436,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 7 ) { /* Begin struct "org_csapi_pam_TpPAMADNotificationData" */ - decode_org_csapi_pam_TpPAMADNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMADNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMADNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75493,7 +54444,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 8 ) { /* Begin struct "org_csapi_pam_TpPAMAANotificationData" */ - decode_org_csapi_pam_TpPAMAANotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAANotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAANotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75501,7 +54452,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 9 ) { /* Begin struct "org_csapi_pam_TpPAMAUNotificationData" */ - decode_org_csapi_pam_TpPAMAUNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAUNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAUNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75509,7 +54460,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 10 ) { /* Begin struct "org_csapi_pam_TpPAMCCNotificationData" */ - decode_org_csapi_pam_TpPAMCCNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMCCNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMCCNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75517,7 +54468,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 11 ) { /* Begin struct "org_csapi_pam_TpPAMACPSNotificationData" */ - decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMACPSNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMACPSNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75525,7 +54476,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpPAMNotificationInfo == 12 ) { /* Begin struct "org_csapi_pam_TpPAMAPSNotificationData" */ - decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_pam_TpPAMAPSNotificationData_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_pam_TpPAMAPSNotificationData" */ return; /* End Compare for this discriminant type */ } @@ -75536,6 +54487,7 @@ decode_org_csapi_pam_TpPAMNotificationInfo_un(tvbuff_t *tvb _U_, packet_info *pi 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75546,9 +54498,8 @@ decode_org_csapi_pam_TpPAMPreferenceData_un(tvbuff_t *tvb _U_, packet_info *pinf * IDL Union Start - IDL:org/csapi/pam/TpPAMPreferenceData:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMPreferenceData_TpPAMPreferenceData, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_pam_TpPAMPreferenceData_TpPAMPreferenceData, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/pam/TpPAMPreferenceType:1.0 @@ -75560,7 +54511,6 @@ decode_org_csapi_pam_TpPAMPreferenceData_un(tvbuff_t *tvb _U_, packet_info *pinf get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - return; /* End Compare for this discriminant type */ } @@ -75577,6 +54527,7 @@ decode_org_csapi_pam_TpPAMPreferenceData_un(tvbuff_t *tvb _U_, packet_info *pinf 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75587,9 +54538,8 @@ decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pin * IDL Union Start - IDL:org/csapi/mmm/TpFolderInfoProperty:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpFolderInfoProperty_TpFolderInfoProperty, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpFolderInfoProperty_TpFolderInfoProperty, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpFolderInfoPropertyName:1.0 @@ -75599,14 +54549,14 @@ decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpFolderInfoProperty == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpFolderInfoProperty_FolderDateCreated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpFolderInfoProperty_FolderDateCreated); return; /* End Compare for this discriminant type */ } if (disc_s_TpFolderInfoProperty == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpFolderInfoProperty_FolderDateChanged"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpFolderInfoProperty_FolderDateChanged); return; /* End Compare for this discriminant type */ } @@ -75638,6 +54588,7 @@ decode_org_csapi_mmm_TpFolderInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pin 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75648,9 +54599,8 @@ decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi * IDL Union Start - IDL:org/csapi/mmm/TpMailboxInfoProperty:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMailboxInfoProperty_TpMailboxInfoProperty, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMailboxInfoProperty_TpMailboxInfoProperty, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpMailboxInfoPropertyName:1.0 @@ -75660,21 +54610,21 @@ decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMailboxInfoProperty == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMailboxInfoProperty_MailboxOwner"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMailboxInfoProperty_MailboxOwner); return; /* End Compare for this discriminant type */ } if (disc_s_TpMailboxInfoProperty == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMailboxInfoProperty_MailboxDateCreated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMailboxInfoProperty_MailboxDateCreated); return; /* End Compare for this discriminant type */ } if (disc_s_TpMailboxInfoProperty == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMailboxInfoProperty_MailboxDateChanged"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMailboxInfoProperty_MailboxDateChanged); return; /* End Compare for this discriminant type */ } @@ -75699,6 +54649,7 @@ decode_org_csapi_mmm_TpMailboxInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75709,9 +54660,8 @@ decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi * IDL Union Start - IDL:org/csapi/mmm/TpMessageInfoProperty:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoProperty_TpMessageInfoProperty, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoProperty_TpMessageInfoProperty, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessageInfoPropertyName:1.0 @@ -75721,21 +54671,21 @@ decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageInfoProperty_MessageDateCreated"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageInfoProperty_MessageDateCreated); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageInfoProperty_MessageDateReceived"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageInfoProperty_MessageDateReceived); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageInfoProperty == 3 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageInfoProperty_MessageDateChanged"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageInfoProperty_MessageDateChanged); return; /* End Compare for this discriminant type */ } @@ -75749,9 +54699,8 @@ decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi if (disc_s_TpMessageInfoProperty == 5 ) { - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoProperty_MessageStatus, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageInfoProperty_MessageStatus, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -75769,6 +54718,7 @@ decode_org_csapi_mmm_TpMessageInfoProperty_un(tvbuff_t *tvb _U_, packet_info *pi 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -75795,9 +54745,8 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin * IDL Union Start - IDL:org/csapi/mmm/TpMessageHeaderField:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_TpMessageHeaderField, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_TpMessageHeaderField, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessageHeaderFieldType:1.0 @@ -75807,7 +54756,7 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_DateSent"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_DateSent); return; /* End Compare for this discriminant type */ } @@ -75815,12 +54764,12 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 1 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_From = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_From, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_From); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_From, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_From); for (i_org_csapi_mmm_TpMessageHeaderField_From=0; i_org_csapi_mmm_TpMessageHeaderField_From < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_From; i_org_csapi_mmm_TpMessageHeaderField_From++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -75830,7 +54779,7 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 2 ) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ return; /* End Compare for this discriminant type */ } @@ -75838,12 +54787,12 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 3 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_ReplyTo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_ReplyTo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_ReplyTo); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_ReplyTo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_ReplyTo); for (i_org_csapi_mmm_TpMessageHeaderField_ReplyTo=0; i_org_csapi_mmm_TpMessageHeaderField_ReplyTo < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_ReplyTo; i_org_csapi_mmm_TpMessageHeaderField_ReplyTo++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -75853,12 +54802,12 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 4 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_To = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_To, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_To); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_To, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_To); for (i_org_csapi_mmm_TpMessageHeaderField_To=0; i_org_csapi_mmm_TpMessageHeaderField_To < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_To; i_org_csapi_mmm_TpMessageHeaderField_To++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -75868,12 +54817,12 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 5 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Cc = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Cc, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Cc); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Cc, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Cc); for (i_org_csapi_mmm_TpMessageHeaderField_Cc=0; i_org_csapi_mmm_TpMessageHeaderField_Cc < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Cc; i_org_csapi_mmm_TpMessageHeaderField_Cc++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -75883,12 +54832,12 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 6 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Bcc = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Bcc, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Bcc); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Bcc, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Bcc); for (i_org_csapi_mmm_TpMessageHeaderField_Bcc=0; i_org_csapi_mmm_TpMessageHeaderField_Bcc < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Bcc; i_org_csapi_mmm_TpMessageHeaderField_Bcc++) { /* Begin struct "org_csapi_TpAddress" */ - decode_org_csapi_TpAddress_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_TpAddress_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_TpAddress" */ } @@ -75897,7 +54846,7 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 7 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_RFC822MessageID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_RFC822MessageID); return; /* End Compare for this discriminant type */ } @@ -75905,11 +54854,11 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 8 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_InReplyTo = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_InReplyTo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_InReplyTo); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_InReplyTo, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_InReplyTo); for (i_org_csapi_mmm_TpMessageHeaderField_InReplyTo=0; i_org_csapi_mmm_TpMessageHeaderField_InReplyTo < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_InReplyTo; i_org_csapi_mmm_TpMessageHeaderField_InReplyTo++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_InReplyTo"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_InReplyTo); } @@ -75919,11 +54868,11 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 9 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_References = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_References, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_References); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_References, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_References); for (i_org_csapi_mmm_TpMessageHeaderField_References=0; i_org_csapi_mmm_TpMessageHeaderField_References < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_References; i_org_csapi_mmm_TpMessageHeaderField_References++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_References"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_References); } @@ -75932,14 +54881,14 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 10 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_Subject"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_Subject); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageHeaderField == 11 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_Comments"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_Comments); return; /* End Compare for this discriminant type */ } @@ -75947,11 +54896,11 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 12 ) { u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Keywords = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Keywords, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Keywords); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Keywords, tvb,*offset-4, 4, u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Keywords); for (i_org_csapi_mmm_TpMessageHeaderField_Keywords=0; i_org_csapi_mmm_TpMessageHeaderField_Keywords < u_octet4_loop_org_csapi_mmm_TpMessageHeaderField_Keywords; i_org_csapi_mmm_TpMessageHeaderField_Keywords++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_Keywords"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_Keywords); } @@ -75961,7 +54910,7 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 13 ) { /* Begin struct "org_csapi_mmm_TpGenericHeaderField" */ - decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpGenericHeaderField" */ return; /* End Compare for this discriminant type */ } @@ -75969,49 +54918,49 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 14 ) { /* Begin struct "org_csapi_mmm_TpGenericHeaderField" */ - decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpGenericHeaderField" */ return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageHeaderField == 15 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_MimeVersion"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_MimeVersion); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageHeaderField == 16 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_MimeContent"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_MimeContent); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageHeaderField == 17 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_MimeEncoding"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_MimeEncoding); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageHeaderField == 18 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_MimeID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_MimeID); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageHeaderField == 19 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_MimeDescription"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_MimeDescription); return; /* End Compare for this discriminant type */ } if (disc_s_TpMessageHeaderField == 20 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageHeaderField_MimeDisposition"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageHeaderField_MimeDisposition); return; /* End Compare for this discriminant type */ } @@ -76019,7 +54968,7 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 21 ) { /* Begin struct "org_csapi_mmm_TpGenericHeaderField" */ - decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpGenericHeaderField" */ return; /* End Compare for this discriminant type */ } @@ -76027,16 +54976,15 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessageHeaderField == 22 ) { /* Begin struct "org_csapi_mmm_TpGenericHeaderField" */ - decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpGenericHeaderField_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* 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); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Priority, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageHeaderField_Priority, tvb, *offset-4, 4, u_octet4); return; /* End Compare for this discriminant type */ } @@ -76047,6 +54995,7 @@ decode_org_csapi_mmm_TpMessageHeaderField_un(tvbuff_t *tvb _U_, packet_info *pin 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -76057,9 +55006,8 @@ decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ * IDL Union Start - IDL:org/csapi/mmm/TpDeliveryTime:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpDeliveryTime_TpDeliveryTime, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpDeliveryTime_TpDeliveryTime, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpDeliveryTimeType:1.0 @@ -76069,7 +55017,7 @@ decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ if (disc_s_TpDeliveryTime == 1 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpDeliveryTime_DeliveryTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpDeliveryTime_DeliveryTime); return; /* End Compare for this discriminant type */ } @@ -76087,6 +55035,7 @@ decode_org_csapi_mmm_TpDeliveryTime_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_ 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -76097,9 +55046,8 @@ decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet_info *pinfo * IDL Union Start - IDL:org/csapi/mmm/TpMessageTreatment:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageTreatment_TpMessageTreatment, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessageTreatment_TpMessageTreatment, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessageTreatmentType:1.0 @@ -76116,7 +55064,7 @@ decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet_info *pinfo if (disc_s_TpMessageTreatment == 2 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageTreatment_BillingID"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageTreatment_BillingID); return; /* End Compare for this discriminant type */ } @@ -76133,7 +55081,7 @@ decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet_info *pinfo if (disc_s_TpMessageTreatment == 4 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessageTreatment_ValidityTime"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessageTreatment_ValidityTime); return; /* End Compare for this discriminant type */ } @@ -76144,6 +55092,7 @@ decode_org_csapi_mmm_TpMessageTreatment_un(tvbuff_t *tvb _U_, packet_info *pinfo 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -76154,9 +55103,8 @@ decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info * IDL Union Start - IDL:org/csapi/mmm/TpMessagingEventCriteria:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingEventCriteria_TpMessagingEventCriteria, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingEventCriteria_TpMessagingEventCriteria, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessagingEventName:1.0 @@ -76167,7 +55115,7 @@ decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpMessagingEventCriteria == 1 ) { /* Begin struct "org_csapi_mmm_TpNewMailboxMessageArrivedCriteria" */ - decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpNewMailboxMessageArrivedCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpNewMailboxMessageArrivedCriteria" */ return; /* End Compare for this discriminant type */ } @@ -76175,7 +55123,7 @@ decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info if (disc_s_TpMessagingEventCriteria == 2 ) { /* Begin struct "org_csapi_mmm_TpNewMessageArrivedCriteria" */ - decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpNewMessageArrivedCriteria_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpNewMessageArrivedCriteria" */ return; /* End Compare for this discriminant type */ } @@ -76193,6 +55141,7 @@ decode_org_csapi_mmm_TpMessagingEventCriteria_un(tvbuff_t *tvb _U_, packet_info 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_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; @@ -76203,9 +55152,8 @@ decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin * IDL Union Start - IDL:org/csapi/mmm/TpMessagingEventInfo:1.0 */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingEventInfo_TpMessagingEventInfo, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_org_csapi_mmm_TpMessagingEventInfo_TpMessagingEventInfo, tvb, *offset-4, 4, u_octet4); /* * IDL Union - Discriminant - IDL:org/csapi/mmm/TpMessagingEventName:1.0 @@ -76215,7 +55163,7 @@ decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessagingEventInfo == 0 ) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "org_csapi_mmm_TpMessagingEventInfo_EventNameUndefined"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_org_csapi_mmm_TpMessagingEventInfo_EventNameUndefined); return; /* End Compare for this discriminant type */ } @@ -76223,7 +55171,7 @@ decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessagingEventInfo == 1 ) { /* Begin struct "org_csapi_mmm_TpNewMailboxMessageArrivedInfo" */ - decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpNewMailboxMessageArrivedInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpNewMailboxMessageArrivedInfo" */ return; /* End Compare for this discriminant type */ } @@ -76231,7 +55179,7 @@ decode_org_csapi_mmm_TpMessagingEventInfo_un(tvbuff_t *tvb _U_, packet_info *pin if (disc_s_TpMessagingEventInfo == 2 ) { /* Begin struct "org_csapi_mmm_TpNewMessageArrivedInfo" */ - decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_org_csapi_mmm_TpNewMessageArrivedInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "org_csapi_mmm_TpNewMessageArrivedInfo" */ return; /* End Compare for this discriminant type */ } @@ -76273,7 +55221,7 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M if(header->message_type == Reply) { /* fill-up info column */ col_append_fstr(pinfo->cinfo, COL_INFO, " op = %s",operation); - }; + } /* fill-up the field */ pi=proto_tree_add_string(ptree, hf_operationrequest, tvb, 0, 0, operation); PROTO_ITEM_SET_GENERATED(pi); @@ -76283,19 +55231,13 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M static gboolean dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) { - - gboolean stream_is_big_endian; /* big endianess */ proto_item *item _U_; proto_tree *tree _U_; - - stream_is_big_endian = is_big_endian(header); /* get endianess */ + gboolean stream_is_big_endian = is_big_endian(header); /* get endianess */ /* If we have a USER Exception, then decode it and return */ - if ((header->message_type == Reply) && (header->rep_status == USER_EXCEPTION)) { - return decode_user_exception(tvb, pinfo, ptree, offset, header, operation, stream_is_big_endian); - } switch(header->message_type) { @@ -83767,7 +62709,6 @@ dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset return TRUE; } - break; case CancelRequest: @@ -83789,13 +62730,10 @@ dissect_parlay(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset } /* End of main dissector */ - /* Register the protocol with Wireshark */ - -void proto_register_giop_parlay(void) { - +void proto_register_giop_parlay(void) +{ /* setup list of header fields */ - static hf_register_info hf[] = { /* field that indicates the currently ongoing request/reply exchange */ {&hf_operationrequest, {"Request_Operation","giop-parlay.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}}, @@ -86434,771 +65372,463 @@ void proto_register_giop_parlay(void) { }; /* Register the protocol name and description */ - proto_parlay = proto_register_protocol("Parlay Dissector Using GIOP API" , "PARLAY", "giop-parlay" ); - proto_register_field_array(proto_parlay, hf, array_length(hf)); - proto_register_subtree_array(ett,array_length(ett)); - } - /* register me as handler for these interfaces */ - -void proto_reg_handoff_giop_parlay(void) { - - +void proto_reg_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 */ - - } diff --git a/epan/dissectors/packet-tango.c b/epan/dissectors/packet-tango.c index 204551bd12..2bc9dd011d 100644 --- a/epan/dissectors/packet-tango.c +++ b/epan/dissectors/packet-tango.c @@ -49,6 +49,14 @@ #endif +/* Initialise the protocol and subtree pointers */ +static int proto_tango = -1; +static gint ett_tango = -1; + + +/* Initialise the initial Alignment */ +static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ + static int hf_operationrequest = -1;/* Request_Operation field */ /* Operation filters */ @@ -248,119 +256,79 @@ static int hf_Tango_MultiDevFailed_errors = -1; static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset); - /* Struct prototype declaration Start */ - /* Struct = IDL:Tango/DevVarLongStringArray:1.0 */ -static void decode_Tango_DevVarLongStringArray_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 _U_); - +static void decode_Tango_DevVarLongStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevVarDoubleStringArray:1.0 */ -static void decode_Tango_DevVarDoubleStringArray_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 _U_); - +static void decode_Tango_DevVarDoubleStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/TimeVal:1.0 */ -static void decode_Tango_TimeVal_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 _U_); - +static void decode_Tango_TimeVal_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevCmdInfo:1.0 */ -static void decode_Tango_DevCmdInfo_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 _U_); - +static void decode_Tango_DevCmdInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevCmdInfo_2:1.0 */ -static void decode_Tango_DevCmdInfo_2_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 _U_); - +static void decode_Tango_DevCmdInfo_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevError:1.0 */ -static void decode_Tango_DevError_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 _U_); - +static void decode_Tango_DevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/NamedDevError:1.0 */ -static void decode_Tango_NamedDevError_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 _U_); - +static void decode_Tango_NamedDevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/AttributeConfig:1.0 */ -static void decode_Tango_AttributeConfig_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 _U_); - +static void decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/AttributeConfig_2:1.0 */ -static void decode_Tango_AttributeConfig_2_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 _U_); - +static void decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/AttributeValue:1.0 */ -static void decode_Tango_AttributeValue_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 _U_); - +static void decode_Tango_AttributeValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/AttributeDim:1.0 */ -static void decode_Tango_AttributeDim_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 _U_); - +static void decode_Tango_AttributeDim_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/AttributeValue_3:1.0 */ -static void decode_Tango_AttributeValue_3_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 _U_); - +static void decode_Tango_AttributeValue_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/ChangeEventProp:1.0 */ -static void decode_Tango_ChangeEventProp_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 _U_); - +static void decode_Tango_ChangeEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/PeriodicEventProp:1.0 */ -static void decode_Tango_PeriodicEventProp_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 _U_); - +static void decode_Tango_PeriodicEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/ArchiveEventProp:1.0 */ -static void decode_Tango_ArchiveEventProp_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 _U_); - +static void decode_Tango_ArchiveEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/EventProperties:1.0 */ -static void decode_Tango_EventProperties_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 _U_); - +static void decode_Tango_EventProperties_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/AttributeAlarm:1.0 */ -static void decode_Tango_AttributeAlarm_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 _U_); - +static void decode_Tango_AttributeAlarm_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/AttributeConfig_3:1.0 */ -static void decode_Tango_AttributeConfig_3_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 _U_); - +static void decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevInfo:1.0 */ -static void decode_Tango_DevInfo_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 _U_); - +static void decode_Tango_DevInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevInfo_3:1.0 */ -static void decode_Tango_DevInfo_3_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 _U_); - +static void decode_Tango_DevInfo_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevCmdHistory:1.0 */ -static void decode_Tango_DevCmdHistory_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 _U_); - +static void decode_Tango_DevCmdHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevAttrHistory:1.0 */ -static void decode_Tango_DevAttrHistory_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 _U_); - +static void decode_Tango_DevAttrHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct = IDL:Tango/DevAttrHistory_3:1.0 */ -static void decode_Tango_DevAttrHistory_3_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 _U_); - +static void decode_Tango_DevAttrHistory_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); /* Struct prototype declaration End */ - -/* Initialise the protocol and subtree pointers */ -static int proto_tango = -1; -static gint ett_tango = -1; - - -/* Initialise the initial Alignment */ -static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ - - - -/* Initialise the Registered fields */ - -/* TODO - Use registered fields */ - /* * IDL Attributes Start */ @@ -480,6 +448,7 @@ static const value_string Tango_DispLevel[] = { static void decode_ex_Tango_DevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item *item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_DevFailed_errors; @@ -487,12 +456,12 @@ decode_ex_Tango_DevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree /* Operation specific Variable declarations End */ u_octet4_loop_Tango_DevFailed_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevFailed_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_DevFailed_errors); + item = proto_tree_add_uint(tree, hf_Tango_DevFailed_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_DevFailed_errors); for (i_Tango_DevFailed_errors=0; i_Tango_DevFailed_errors < u_octet4_loop_Tango_DevFailed_errors; i_Tango_DevFailed_errors++) { /* Begin struct "Tango_DevError" */ - decode_Tango_DevError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevError" */ } @@ -502,6 +471,7 @@ decode_ex_Tango_DevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree static void decode_ex_Tango_MultiDevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item *item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_MultiDevFailed_errors; @@ -509,12 +479,12 @@ decode_ex_Tango_MultiDevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ /* Operation specific Variable declarations End */ u_octet4_loop_Tango_MultiDevFailed_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_MultiDevFailed_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_MultiDevFailed_errors); + item = proto_tree_add_uint(tree, hf_Tango_MultiDevFailed_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_MultiDevFailed_errors); for (i_Tango_MultiDevFailed_errors=0; i_Tango_MultiDevFailed_errors < u_octet4_loop_Tango_MultiDevFailed_errors; i_Tango_MultiDevFailed_errors++) { /* Begin struct "Tango_NamedDevError" */ - decode_Tango_NamedDevError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_NamedDevError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_NamedDevError" */ } @@ -530,7 +500,6 @@ decode_ex_Tango_MultiDevFailed(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - proto_tree *tree _U_; if (!header->exception_id) @@ -549,9 +518,7 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr } - return FALSE; /* user exception not found */ - } /* Begin Attribute Helper Functions */ @@ -561,8 +528,9 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr static void decode_get_Tango_Device_name_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "get_Tango_Device_name_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_get_Tango_Device_name_name); } @@ -571,8 +539,9 @@ decode_get_Tango_Device_name_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto static void decode_get_Tango_Device_description_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "get_Tango_Device_description_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_get_Tango_Device_description_description); } @@ -581,14 +550,14 @@ decode_get_Tango_Device_description_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_ static void decode_get_Tango_Device_state_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_get_Tango_Device_state_state, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_get_Tango_Device_state_state, tvb, *offset-4, 4, u_octet4); } @@ -597,8 +566,9 @@ decode_get_Tango_Device_state_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot static void decode_get_Tango_Device_status_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "get_Tango_Device_status_status"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_get_Tango_Device_status_status); } @@ -607,8 +577,9 @@ decode_get_Tango_Device_status_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro static void decode_get_Tango_Device_adm_name_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "get_Tango_Device_adm_name_adm_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_get_Tango_Device_adm_name_adm_name); } @@ -621,55 +592,33 @@ decode_get_Tango_Device_adm_name_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p static void decode_Tango_Device_command_inout(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_command_inout_command); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_command_inout_command"); - - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -678,7 +627,6 @@ decode_Tango_Device_command_inout(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro static void decode_Tango_Device_get_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_get_attribute_config_names; guint32 i_Tango_Device_get_attribute_config_names; @@ -686,67 +634,46 @@ decode_Tango_Device_get_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _ guint32 i_Tango_Device_get_attribute_config_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_get_attribute_config_names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_get_attribute_config_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_get_attribute_config_names); + item = proto_tree_add_uint(tree, hf_Tango_Device_get_attribute_config_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_get_attribute_config_names); for (i_Tango_Device_get_attribute_config_names=0; i_Tango_Device_get_attribute_config_names < u_octet4_loop_Tango_Device_get_attribute_config_names; i_Tango_Device_get_attribute_config_names++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_get_attribute_config_names"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_get_attribute_config_names); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_get_attribute_config_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_get_attribute_config_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_get_attribute_config_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_get_attribute_config_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_get_attribute_config_return); for (i_Tango_Device_get_attribute_config_return=0; i_Tango_Device_get_attribute_config_return < u_octet4_loop_Tango_Device_get_attribute_config_return; i_Tango_Device_get_attribute_config_return++) { /* Begin struct "Tango_AttributeConfig" */ - decode_Tango_AttributeConfig_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeConfig_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeConfig" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -755,66 +682,44 @@ decode_Tango_Device_get_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _ static void decode_Tango_Device_set_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_set_attribute_config_new_conf; guint32 i_Tango_Device_set_attribute_config_new_conf; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_set_attribute_config_new_conf = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_set_attribute_config_new_conf, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_set_attribute_config_new_conf); + item = proto_tree_add_uint(tree, hf_Tango_Device_set_attribute_config_new_conf, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_set_attribute_config_new_conf); for (i_Tango_Device_set_attribute_config_new_conf=0; i_Tango_Device_set_attribute_config_new_conf < u_octet4_loop_Tango_Device_set_attribute_config_new_conf; i_Tango_Device_set_attribute_config_new_conf++) { /* Begin struct "Tango_AttributeConfig" */ - decode_Tango_AttributeConfig_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeConfig_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeConfig" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -823,7 +728,6 @@ decode_Tango_Device_set_attribute_config(tvbuff_t *tvb _U_, packet_info *pinfo _ static void decode_Tango_Device_read_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_read_attributes_names; guint32 i_Tango_Device_read_attributes_names; @@ -831,67 +735,46 @@ decode_Tango_Device_read_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p guint32 i_Tango_Device_read_attributes_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_read_attributes_names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_read_attributes_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_read_attributes_names); + item = proto_tree_add_uint(tree, hf_Tango_Device_read_attributes_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_read_attributes_names); for (i_Tango_Device_read_attributes_names=0; i_Tango_Device_read_attributes_names < u_octet4_loop_Tango_Device_read_attributes_names; i_Tango_Device_read_attributes_names++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_read_attributes_names"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_read_attributes_names); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_read_attributes_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_read_attributes_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_read_attributes_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_read_attributes_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_read_attributes_return); for (i_Tango_Device_read_attributes_return=0; i_Tango_Device_read_attributes_return < u_octet4_loop_Tango_Device_read_attributes_return; i_Tango_Device_read_attributes_return++) { /* Begin struct "Tango_AttributeValue" */ - decode_Tango_AttributeValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeValue" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -900,66 +783,44 @@ decode_Tango_Device_read_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p static void decode_Tango_Device_write_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_write_attributes_values; guint32 i_Tango_Device_write_attributes_values; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_write_attributes_values = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_write_attributes_values, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_write_attributes_values); + item = proto_tree_add_uint(tree, hf_Tango_Device_write_attributes_values, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_write_attributes_values); for (i_Tango_Device_write_attributes_values=0; i_Tango_Device_write_attributes_values < u_octet4_loop_Tango_Device_write_attributes_values; i_Tango_Device_write_attributes_values++) { /* Begin struct "Tango_AttributeValue" */ - decode_Tango_AttributeValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeValue" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -968,51 +829,29 @@ decode_Tango_Device_write_attributes(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_Tango_Device_ping(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1021,65 +860,43 @@ decode_Tango_Device_ping(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree * static void decode_Tango_Device_black_box(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_black_box_return; guint32 i_Tango_Device_black_box_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - proto_tree_add_uint(tree, hf_Tango_Device_black_box_n, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_black_box_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_black_box_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_black_box_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_black_box_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_black_box_return); for (i_Tango_Device_black_box_return=0; i_Tango_Device_black_box_return < u_octet4_loop_Tango_Device_black_box_return; i_Tango_Device_black_box_return++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_black_box_return"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_black_box_return); } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1088,52 +905,30 @@ decode_Tango_Device_black_box(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t static void decode_Tango_Device_info(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "Tango_DevInfo" */ - decode_Tango_DevInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1142,64 +937,42 @@ decode_Tango_Device_info(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree * static void decode_Tango_Device_command_list_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_command_list_query_return; guint32 i_Tango_Device_command_list_query_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_command_list_query_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_command_list_query_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_command_list_query_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_command_list_query_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_command_list_query_return); for (i_Tango_Device_command_list_query_return=0; i_Tango_Device_command_list_query_return < u_octet4_loop_Tango_Device_command_list_query_return; i_Tango_Device_command_list_query_return++) { /* Begin struct "Tango_DevCmdInfo" */ - decode_Tango_DevCmdInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevCmdInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevCmdInfo" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1208,54 +981,32 @@ decode_Tango_Device_command_list_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_ static void decode_Tango_Device_command_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_command_query_command"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_command_query_command); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "Tango_DevCmdInfo" */ - decode_Tango_DevCmdInfo_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevCmdInfo_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevCmdInfo" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1264,63 +1015,40 @@ decode_Tango_Device_command_query(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro static void decode_Tango_Device_2_command_inout_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_2_command_inout_2_command); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_2_command_inout_2_command"); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); - - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_command_inout_2_source, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_command_inout_2_source, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1329,7 +1057,6 @@ decode_Tango_Device_2_command_inout_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_Tango_Device_2_read_attributes_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_2_read_attributes_2_names; guint32 i_Tango_Device_2_read_attributes_2_names; @@ -1338,71 +1065,49 @@ decode_Tango_Device_2_read_attributes_2(tvbuff_t *tvb _U_, packet_info *pinfo _U guint32 i_Tango_Device_2_read_attributes_2_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_2_read_attributes_2_names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_read_attributes_2_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_read_attributes_2_names); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_read_attributes_2_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_read_attributes_2_names); for (i_Tango_Device_2_read_attributes_2_names=0; i_Tango_Device_2_read_attributes_2_names < u_octet4_loop_Tango_Device_2_read_attributes_2_names; i_Tango_Device_2_read_attributes_2_names++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_2_read_attributes_2_names"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_2_read_attributes_2_names); } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_read_attributes_2_source, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_read_attributes_2_source, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_2_read_attributes_2_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_read_attributes_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_read_attributes_2_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_read_attributes_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_read_attributes_2_return); for (i_Tango_Device_2_read_attributes_2_return=0; i_Tango_Device_2_read_attributes_2_return < u_octet4_loop_Tango_Device_2_read_attributes_2_return; i_Tango_Device_2_read_attributes_2_return++) { /* Begin struct "Tango_AttributeValue" */ - decode_Tango_AttributeValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeValue" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1411,7 +1116,6 @@ decode_Tango_Device_2_read_attributes_2(tvbuff_t *tvb _U_, packet_info *pinfo _U static void decode_Tango_Device_2_get_attribute_config_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_2_get_attribute_config_2_names; guint32 i_Tango_Device_2_get_attribute_config_2_names; @@ -1419,67 +1123,46 @@ decode_Tango_Device_2_get_attribute_config_2(tvbuff_t *tvb _U_, packet_info *pin guint32 i_Tango_Device_2_get_attribute_config_2_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_2_get_attribute_config_2_names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_get_attribute_config_2_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_get_attribute_config_2_names); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_get_attribute_config_2_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_get_attribute_config_2_names); for (i_Tango_Device_2_get_attribute_config_2_names=0; i_Tango_Device_2_get_attribute_config_2_names < u_octet4_loop_Tango_Device_2_get_attribute_config_2_names; i_Tango_Device_2_get_attribute_config_2_names++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_2_get_attribute_config_2_names"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_2_get_attribute_config_2_names); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_2_get_attribute_config_2_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_get_attribute_config_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_get_attribute_config_2_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_get_attribute_config_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_get_attribute_config_2_return); for (i_Tango_Device_2_get_attribute_config_2_return=0; i_Tango_Device_2_get_attribute_config_2_return < u_octet4_loop_Tango_Device_2_get_attribute_config_2_return; i_Tango_Device_2_get_attribute_config_2_return++) { /* Begin struct "Tango_AttributeConfig_2" */ - decode_Tango_AttributeConfig_2_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeConfig_2_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeConfig_2" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1488,64 +1171,42 @@ decode_Tango_Device_2_get_attribute_config_2(tvbuff_t *tvb _U_, packet_info *pin static void decode_Tango_Device_2_command_list_query_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_2_command_list_query_2_return; guint32 i_Tango_Device_2_command_list_query_2_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_2_command_list_query_2_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_command_list_query_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_command_list_query_2_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_command_list_query_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_command_list_query_2_return); for (i_Tango_Device_2_command_list_query_2_return=0; i_Tango_Device_2_command_list_query_2_return < u_octet4_loop_Tango_Device_2_command_list_query_2_return; i_Tango_Device_2_command_list_query_2_return++) { /* Begin struct "Tango_DevCmdInfo_2" */ - decode_Tango_DevCmdInfo_2_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevCmdInfo_2_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevCmdInfo_2" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1554,54 +1215,32 @@ decode_Tango_Device_2_command_list_query_2(tvbuff_t *tvb _U_, packet_info *pinfo static void decode_Tango_Device_2_command_query_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_2_command_query_2_command"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_2_command_query_2_command); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "Tango_DevCmdInfo_2" */ - decode_Tango_DevCmdInfo_2_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevCmdInfo_2_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevCmdInfo_2" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1610,68 +1249,46 @@ decode_Tango_Device_2_command_query_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, static void decode_Tango_Device_2_command_inout_history_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_2_command_inout_history_2_return; guint32 i_Tango_Device_2_command_inout_history_2_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_2_command_inout_history_2_command"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_2_command_inout_history_2_command); proto_tree_add_uint(tree, hf_Tango_Device_2_command_inout_history_2_n, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_2_command_inout_history_2_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_command_inout_history_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_command_inout_history_2_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_command_inout_history_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_command_inout_history_2_return); for (i_Tango_Device_2_command_inout_history_2_return=0; i_Tango_Device_2_command_inout_history_2_return < u_octet4_loop_Tango_Device_2_command_inout_history_2_return; i_Tango_Device_2_command_inout_history_2_return++) { /* Begin struct "Tango_DevCmdHistory" */ - decode_Tango_DevCmdHistory_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevCmdHistory_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevCmdHistory" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1680,68 +1297,46 @@ decode_Tango_Device_2_command_inout_history_2(tvbuff_t *tvb _U_, packet_info *pi static void decode_Tango_Device_2_read_attribute_history_2(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_2_read_attribute_history_2_return; guint32 i_Tango_Device_2_read_attribute_history_2_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_2_read_attribute_history_2_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_2_read_attribute_history_2_name); proto_tree_add_uint(tree, hf_Tango_Device_2_read_attribute_history_2_n, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_2_read_attribute_history_2_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_2_read_attribute_history_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_read_attribute_history_2_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_2_read_attribute_history_2_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_2_read_attribute_history_2_return); for (i_Tango_Device_2_read_attribute_history_2_return=0; i_Tango_Device_2_read_attribute_history_2_return < u_octet4_loop_Tango_Device_2_read_attribute_history_2_return; i_Tango_Device_2_read_attribute_history_2_return++) { /* Begin struct "Tango_DevAttrHistory" */ - decode_Tango_DevAttrHistory_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevAttrHistory_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevAttrHistory" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1750,7 +1345,6 @@ decode_Tango_Device_2_read_attribute_history_2(tvbuff_t *tvb _U_, packet_info *p static void decode_Tango_Device_3_read_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_3_read_attributes_3_names; guint32 i_Tango_Device_3_read_attributes_3_names; @@ -1759,71 +1353,49 @@ decode_Tango_Device_3_read_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _U guint32 i_Tango_Device_3_read_attributes_3_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_3_read_attributes_3_names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_read_attributes_3_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_read_attributes_3_names); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_read_attributes_3_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_read_attributes_3_names); for (i_Tango_Device_3_read_attributes_3_names=0; i_Tango_Device_3_read_attributes_3_names < u_octet4_loop_Tango_Device_3_read_attributes_3_names; i_Tango_Device_3_read_attributes_3_names++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_3_read_attributes_3_names"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_3_read_attributes_3_names); } - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_read_attributes_3_source, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_read_attributes_3_source, tvb, *offset-4, 4, u_octet4); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_3_read_attributes_3_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_read_attributes_3_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_read_attributes_3_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_read_attributes_3_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_read_attributes_3_return); for (i_Tango_Device_3_read_attributes_3_return=0; i_Tango_Device_3_read_attributes_3_return < u_octet4_loop_Tango_Device_3_read_attributes_3_return; i_Tango_Device_3_read_attributes_3_return++) { /* Begin struct "Tango_AttributeValue_3" */ - decode_Tango_AttributeValue_3_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeValue_3_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeValue_3" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1832,66 +1404,44 @@ decode_Tango_Device_3_read_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _U static void decode_Tango_Device_3_write_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_3_write_attributes_3_values; guint32 i_Tango_Device_3_write_attributes_3_values; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_3_write_attributes_3_values = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_write_attributes_3_values, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_write_attributes_3_values); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_write_attributes_3_values, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_write_attributes_3_values); for (i_Tango_Device_3_write_attributes_3_values=0; i_Tango_Device_3_write_attributes_3_values < u_octet4_loop_Tango_Device_3_write_attributes_3_values; i_Tango_Device_3_write_attributes_3_values++) { /* Begin struct "Tango_AttributeValue" */ - decode_Tango_AttributeValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeValue" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1900,68 +1450,46 @@ decode_Tango_Device_3_write_attributes_3(tvbuff_t *tvb _U_, packet_info *pinfo _ static void decode_Tango_Device_3_read_attribute_history_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_3_read_attribute_history_3_return; guint32 i_Tango_Device_3_read_attribute_history_3_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_3_read_attribute_history_3_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_3_read_attribute_history_3_name); proto_tree_add_uint(tree, hf_Tango_Device_3_read_attribute_history_3_n, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_3_read_attribute_history_3_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_read_attribute_history_3_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_read_attribute_history_3_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_read_attribute_history_3_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_read_attribute_history_3_return); for (i_Tango_Device_3_read_attribute_history_3_return=0; i_Tango_Device_3_read_attribute_history_3_return < u_octet4_loop_Tango_Device_3_read_attribute_history_3_return; i_Tango_Device_3_read_attribute_history_3_return++) { /* Begin struct "Tango_DevAttrHistory_3" */ - decode_Tango_DevAttrHistory_3_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevAttrHistory_3_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevAttrHistory_3" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -1970,52 +1498,30 @@ decode_Tango_Device_3_read_attribute_history_3(tvbuff_t *tvb _U_, packet_info *p static void decode_Tango_Device_3_info_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - - switch(header->message_type) { - case Request: - break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Begin struct "Tango_DevInfo_3" */ - decode_Tango_DevInfo_3_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevInfo_3_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevInfo_3" */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -2024,7 +1530,6 @@ decode_Tango_Device_3_info_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tr static void decode_Tango_Device_3_get_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_3_get_attribute_config_3_names; guint32 i_Tango_Device_3_get_attribute_config_3_names; @@ -2032,67 +1537,46 @@ decode_Tango_Device_3_get_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pin guint32 i_Tango_Device_3_get_attribute_config_3_return; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_3_get_attribute_config_3_names = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_get_attribute_config_3_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_get_attribute_config_3_names); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_get_attribute_config_3_names, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_get_attribute_config_3_names); for (i_Tango_Device_3_get_attribute_config_3_names=0; i_Tango_Device_3_get_attribute_config_3_names < u_octet4_loop_Tango_Device_3_get_attribute_config_3_names; i_Tango_Device_3_get_attribute_config_3_names++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_Device_3_get_attribute_config_3_names"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_Device_3_get_attribute_config_3_names); } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - u_octet4_loop_Tango_Device_3_get_attribute_config_3_return = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_get_attribute_config_3_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_get_attribute_config_3_return); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_get_attribute_config_3_return, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_get_attribute_config_3_return); for (i_Tango_Device_3_get_attribute_config_3_return=0; i_Tango_Device_3_get_attribute_config_3_return < u_octet4_loop_Tango_Device_3_get_attribute_config_3_return; i_Tango_Device_3_get_attribute_config_3_return++) { /* Begin struct "Tango_AttributeConfig_3" */ - decode_Tango_AttributeConfig_3_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeConfig_3_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeConfig_3" */ } break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* @@ -2101,71 +1585,49 @@ decode_Tango_Device_3_get_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pin static void decode_Tango_Device_3_set_attribute_config_3(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - /* Operation specific Variable declarations Begin */ guint32 u_octet4_loop_Tango_Device_3_set_attribute_config_3_new_conf; guint32 i_Tango_Device_3_set_attribute_config_3_new_conf; /* Operation specific Variable declarations End */ - switch(header->message_type) { - case Request: - u_octet4_loop_Tango_Device_3_set_attribute_config_3_new_conf = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_Device_3_set_attribute_config_3_new_conf, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_set_attribute_config_3_new_conf); + item = proto_tree_add_uint(tree, hf_Tango_Device_3_set_attribute_config_3_new_conf, tvb,*offset-4, 4, u_octet4_loop_Tango_Device_3_set_attribute_config_3_new_conf); for (i_Tango_Device_3_set_attribute_config_3_new_conf=0; i_Tango_Device_3_set_attribute_config_3_new_conf < u_octet4_loop_Tango_Device_3_set_attribute_config_3_new_conf; i_Tango_Device_3_set_attribute_config_3_new_conf++) { /* Begin struct "Tango_AttributeConfig_3" */ - decode_Tango_AttributeConfig_3_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeConfig_3_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeConfig_3" */ } break; - case Reply: - switch(header->rep_status) { - case NO_EXCEPTION: - /* Function returns void */ break; - case USER_EXCEPTION: - break; - default: - { /* Unknown Exception */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } - break; - - - } /* switch(header->message_type) */ + } /* switch(header->rep_status) */ break; - default: - { /* Unknown GIOP Message */ expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } - break; - } /* switch(header->message_type) */ - } /* Struct = IDL:Tango/DevVarLongStringArray:1.0 */ static void -decode_Tango_DevVarLongStringArray_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 _U_) +decode_Tango_DevVarLongStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2176,7 +1638,7 @@ decode_Tango_DevVarLongStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, /* Operation specific Variable declarations End */ u_octet4_loop_Tango_DevVarLongStringArray_lvalue = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevVarLongStringArray_lvalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarLongStringArray_lvalue); + item = proto_tree_add_uint(tree, hf_Tango_DevVarLongStringArray_lvalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarLongStringArray_lvalue); for (i_Tango_DevVarLongStringArray_lvalue=0; i_Tango_DevVarLongStringArray_lvalue < u_octet4_loop_Tango_DevVarLongStringArray_lvalue; i_Tango_DevVarLongStringArray_lvalue++) { @@ -2185,11 +1647,11 @@ decode_Tango_DevVarLongStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, } u_octet4_loop_Tango_DevVarLongStringArray_svalue = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevVarLongStringArray_svalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarLongStringArray_svalue); + item = proto_tree_add_uint(tree, hf_Tango_DevVarLongStringArray_svalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarLongStringArray_svalue); for (i_Tango_DevVarLongStringArray_svalue=0; i_Tango_DevVarLongStringArray_svalue < u_octet4_loop_Tango_DevVarLongStringArray_svalue; i_Tango_DevVarLongStringArray_svalue++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevVarLongStringArray_svalue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevVarLongStringArray_svalue); } @@ -2197,7 +1659,7 @@ decode_Tango_DevVarLongStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, /* Struct = IDL:Tango/DevVarDoubleStringArray:1.0 */ static void -decode_Tango_DevVarDoubleStringArray_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 _U_) +decode_Tango_DevVarDoubleStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2208,7 +1670,7 @@ decode_Tango_DevVarDoubleStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U /* Operation specific Variable declarations End */ u_octet4_loop_Tango_DevVarDoubleStringArray_dvalue = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevVarDoubleStringArray_dvalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarDoubleStringArray_dvalue); + item = proto_tree_add_uint(tree, hf_Tango_DevVarDoubleStringArray_dvalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarDoubleStringArray_dvalue); for (i_Tango_DevVarDoubleStringArray_dvalue=0; i_Tango_DevVarDoubleStringArray_dvalue < u_octet4_loop_Tango_DevVarDoubleStringArray_dvalue; i_Tango_DevVarDoubleStringArray_dvalue++) { @@ -2217,11 +1679,11 @@ decode_Tango_DevVarDoubleStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U } u_octet4_loop_Tango_DevVarDoubleStringArray_svalue = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevVarDoubleStringArray_svalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarDoubleStringArray_svalue); + item = proto_tree_add_uint(tree, hf_Tango_DevVarDoubleStringArray_svalue, tvb,*offset-4, 4, u_octet4_loop_Tango_DevVarDoubleStringArray_svalue); for (i_Tango_DevVarDoubleStringArray_svalue=0; i_Tango_DevVarDoubleStringArray_svalue < u_octet4_loop_Tango_DevVarDoubleStringArray_svalue; i_Tango_DevVarDoubleStringArray_svalue++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevVarDoubleStringArray_svalue"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevVarDoubleStringArray_svalue); } @@ -2229,7 +1691,7 @@ decode_Tango_DevVarDoubleStringArray_st(tvbuff_t *tvb _U_, packet_info *pinfo _U /* Struct = IDL:Tango/TimeVal:1.0 */ static void -decode_Tango_TimeVal_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 _U_) +decode_Tango_TimeVal_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_Tango_TimeVal_tv_sec, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2242,10 +1704,10 @@ decode_Tango_TimeVal_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *t /* Struct = IDL:Tango/DevCmdInfo:1.0 */ static void -decode_Tango_DevCmdInfo_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 _U_) +decode_Tango_DevCmdInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevCmdInfo_cmd_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevCmdInfo_cmd_name); proto_tree_add_uint(tree, hf_Tango_DevCmdInfo_cmd_tag, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2253,26 +1715,25 @@ decode_Tango_DevCmdInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree proto_tree_add_uint(tree, hf_Tango_DevCmdInfo_out_type, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevCmdInfo_in_type_desc"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevCmdInfo_in_type_desc); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevCmdInfo_out_type_desc"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevCmdInfo_out_type_desc); } /* Struct = IDL:Tango/DevCmdInfo_2:1.0 */ static void -decode_Tango_DevCmdInfo_2_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 _U_) +decode_Tango_DevCmdInfo_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevCmdInfo_2_cmd_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevCmdInfo_2_cmd_name); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevCmdInfo_2_level, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_DevCmdInfo_2_level, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_Tango_DevCmdInfo_2_cmd_tag, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2280,36 +1741,35 @@ decode_Tango_DevCmdInfo_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tr proto_tree_add_uint(tree, hf_Tango_DevCmdInfo_2_out_type, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevCmdInfo_2_in_type_desc"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevCmdInfo_2_in_type_desc); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevCmdInfo_2_out_type_desc"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevCmdInfo_2_out_type_desc); } /* Struct = IDL:Tango/DevError:1.0 */ static void -decode_Tango_DevError_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 _U_) +decode_Tango_DevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevError_reason"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevError_reason); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevError_severity, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_DevError_severity, tvb, *offset-4, 4, u_octet4); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevError_desc"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevError_desc); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevError_origin"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevError_origin); } /* Struct = IDL:Tango/NamedDevError:1.0 */ static void -decode_Tango_NamedDevError_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 _U_) +decode_Tango_NamedDevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2317,17 +1777,17 @@ decode_Tango_NamedDevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t guint32 i_Tango_NamedDevError_err_list; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_NamedDevError_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_NamedDevError_name); proto_tree_add_uint(tree, hf_Tango_NamedDevError_index_in_call, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); u_octet4_loop_Tango_NamedDevError_err_list = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_NamedDevError_err_list, tvb,*offset-4, 4, u_octet4_loop_Tango_NamedDevError_err_list); + item = proto_tree_add_uint(tree, hf_Tango_NamedDevError_err_list, tvb,*offset-4, 4, u_octet4_loop_Tango_NamedDevError_err_list); for (i_Tango_NamedDevError_err_list=0; i_Tango_NamedDevError_err_list < u_octet4_loop_Tango_NamedDevError_err_list; i_Tango_NamedDevError_err_list++) { /* Begin struct "Tango_DevError" */ - decode_Tango_DevError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevError" */ } @@ -2335,7 +1795,7 @@ decode_Tango_NamedDevError_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t /* Struct = IDL:Tango/AttributeConfig:1.0 */ static void -decode_Tango_AttributeConfig_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 _U_) +decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2344,15 +1804,13 @@ decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto guint32 i_Tango_AttributeConfig_extensions; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_name); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_writable, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_writable, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_data_format, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_data_format, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_Tango_AttributeConfig_data_type, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2360,34 +1818,34 @@ decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto proto_tree_add_uint(tree, hf_Tango_AttributeConfig_max_dim_y, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_description); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_label"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_label); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_standard_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_standard_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_display_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_display_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_format"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_format); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_min_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_min_value); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_max_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_max_value); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_min_alarm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_min_alarm); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_max_alarm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_max_alarm); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_writable_attr_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_writable_attr_name); u_octet4_loop_Tango_AttributeConfig_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_extensions); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_extensions); for (i_Tango_AttributeConfig_extensions=0; i_Tango_AttributeConfig_extensions < u_octet4_loop_Tango_AttributeConfig_extensions; i_Tango_AttributeConfig_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_extensions); } @@ -2395,7 +1853,7 @@ decode_Tango_AttributeConfig_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto /* Struct = IDL:Tango/AttributeConfig_2:1.0 */ static void -decode_Tango_AttributeConfig_2_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 _U_) +decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2404,15 +1862,13 @@ decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro guint32 i_Tango_AttributeConfig_2_extensions; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_name); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_writable, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_writable, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_data_format, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_data_format, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_data_type, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2420,38 +1876,37 @@ decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_max_dim_y, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_description); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_label"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_label); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_standard_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_standard_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_display_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_display_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_format"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_format); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_min_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_min_value); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_max_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_max_value); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_min_alarm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_min_alarm); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_max_alarm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_max_alarm); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_writable_attr_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_writable_attr_name); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_level, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_level, tvb, *offset-4, 4, u_octet4); u_octet4_loop_Tango_AttributeConfig_2_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_2_extensions); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_2_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_2_extensions); for (i_Tango_AttributeConfig_2_extensions=0; i_Tango_AttributeConfig_2_extensions < u_octet4_loop_Tango_AttributeConfig_2_extensions; i_Tango_AttributeConfig_2_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_2_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_2_extensions); } @@ -2459,23 +1914,22 @@ decode_Tango_AttributeConfig_2_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro /* Struct = IDL:Tango/AttributeValue:1.0 */ static void -decode_Tango_AttributeValue_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 _U_) +decode_Tango_AttributeValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ guint32 u_octet4; /* Operation specific Variable declarations End */ - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeValue_quality, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeValue_quality, tvb, *offset-4, 4, u_octet4); /* Begin struct "Tango_TimeVal" */ - decode_Tango_TimeVal_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_TimeVal_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_TimeVal" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeValue_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeValue_name); proto_tree_add_uint(tree, hf_Tango_AttributeValue_dim_x, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2485,7 +1939,7 @@ decode_Tango_AttributeValue_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ /* Struct = IDL:Tango/AttributeDim:1.0 */ static void -decode_Tango_AttributeDim_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 _U_) +decode_Tango_AttributeDim_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_uint(tree, hf_Tango_AttributeDim_dim_x, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2496,7 +1950,7 @@ decode_Tango_AttributeDim_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tr /* Struct = IDL:Tango/AttributeValue_3:1.0 */ static void -decode_Tango_AttributeValue_3_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 _U_) +decode_Tango_AttributeValue_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2505,30 +1959,29 @@ decode_Tango_AttributeValue_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot guint32 i_Tango_AttributeValue_3_err_list; /* Operation specific Variable declarations End */ - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeValue_3_quality, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeValue_3_quality, tvb, *offset-4, 4, u_octet4); /* Begin struct "Tango_TimeVal" */ - decode_Tango_TimeVal_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_TimeVal_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_TimeVal" */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeValue_3_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeValue_3_name); /* Begin struct "Tango_AttributeDim" */ - decode_Tango_AttributeDim_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeDim_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeDim" */ /* Begin struct "Tango_AttributeDim" */ - decode_Tango_AttributeDim_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeDim_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeDim" */ u_octet4_loop_Tango_AttributeValue_3_err_list = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeValue_3_err_list, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeValue_3_err_list); + item = proto_tree_add_uint(tree, hf_Tango_AttributeValue_3_err_list, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeValue_3_err_list); for (i_Tango_AttributeValue_3_err_list=0; i_Tango_AttributeValue_3_err_list < u_octet4_loop_Tango_AttributeValue_3_err_list; i_Tango_AttributeValue_3_err_list++) { /* Begin struct "Tango_DevError" */ - decode_Tango_DevError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevError" */ } @@ -2536,7 +1989,7 @@ decode_Tango_AttributeValue_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot /* Struct = IDL:Tango/ChangeEventProp:1.0 */ static void -decode_Tango_ChangeEventProp_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 _U_) +decode_Tango_ChangeEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2544,16 +1997,16 @@ decode_Tango_ChangeEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto guint32 i_Tango_ChangeEventProp_extensions; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_ChangeEventProp_rel_change"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_ChangeEventProp_rel_change); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_ChangeEventProp_abs_change"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_ChangeEventProp_abs_change); u_octet4_loop_Tango_ChangeEventProp_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_ChangeEventProp_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_ChangeEventProp_extensions); + item = proto_tree_add_uint(tree, hf_Tango_ChangeEventProp_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_ChangeEventProp_extensions); for (i_Tango_ChangeEventProp_extensions=0; i_Tango_ChangeEventProp_extensions < u_octet4_loop_Tango_ChangeEventProp_extensions; i_Tango_ChangeEventProp_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_ChangeEventProp_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_ChangeEventProp_extensions); } @@ -2561,7 +2014,7 @@ decode_Tango_ChangeEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto /* Struct = IDL:Tango/PeriodicEventProp:1.0 */ static void -decode_Tango_PeriodicEventProp_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 _U_) +decode_Tango_PeriodicEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2569,14 +2022,14 @@ decode_Tango_PeriodicEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro guint32 i_Tango_PeriodicEventProp_extensions; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_PeriodicEventProp_period"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_PeriodicEventProp_period); u_octet4_loop_Tango_PeriodicEventProp_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_PeriodicEventProp_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_PeriodicEventProp_extensions); + item = proto_tree_add_uint(tree, hf_Tango_PeriodicEventProp_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_PeriodicEventProp_extensions); for (i_Tango_PeriodicEventProp_extensions=0; i_Tango_PeriodicEventProp_extensions < u_octet4_loop_Tango_PeriodicEventProp_extensions; i_Tango_PeriodicEventProp_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_PeriodicEventProp_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_PeriodicEventProp_extensions); } @@ -2584,7 +2037,7 @@ decode_Tango_PeriodicEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro /* Struct = IDL:Tango/ArchiveEventProp:1.0 */ static void -decode_Tango_ArchiveEventProp_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 _U_) +decode_Tango_ArchiveEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2592,18 +2045,18 @@ decode_Tango_ArchiveEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot guint32 i_Tango_ArchiveEventProp_extensions; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_ArchiveEventProp_rel_change"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_ArchiveEventProp_rel_change); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_ArchiveEventProp_abs_change"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_ArchiveEventProp_abs_change); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_ArchiveEventProp_period"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_ArchiveEventProp_period); u_octet4_loop_Tango_ArchiveEventProp_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_ArchiveEventProp_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_ArchiveEventProp_extensions); + item = proto_tree_add_uint(tree, hf_Tango_ArchiveEventProp_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_ArchiveEventProp_extensions); for (i_Tango_ArchiveEventProp_extensions=0; i_Tango_ArchiveEventProp_extensions < u_octet4_loop_Tango_ArchiveEventProp_extensions; i_Tango_ArchiveEventProp_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_ArchiveEventProp_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_ArchiveEventProp_extensions); } @@ -2611,23 +2064,23 @@ decode_Tango_ArchiveEventProp_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, prot /* Struct = IDL:Tango/EventProperties:1.0 */ static void -decode_Tango_EventProperties_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 _U_) +decode_Tango_EventProperties_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Begin struct "Tango_ChangeEventProp" */ - decode_Tango_ChangeEventProp_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_ChangeEventProp_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_ChangeEventProp" */ /* Begin struct "Tango_PeriodicEventProp" */ - decode_Tango_PeriodicEventProp_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_PeriodicEventProp_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_PeriodicEventProp" */ /* Begin struct "Tango_ArchiveEventProp" */ - decode_Tango_ArchiveEventProp_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_ArchiveEventProp_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_ArchiveEventProp" */ } /* Struct = IDL:Tango/AttributeAlarm:1.0 */ static void -decode_Tango_AttributeAlarm_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 _U_) +decode_Tango_AttributeAlarm_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2635,24 +2088,24 @@ decode_Tango_AttributeAlarm_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ guint32 i_Tango_AttributeAlarm_extensions; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeAlarm_min_alarm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeAlarm_min_alarm); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeAlarm_max_alarm"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeAlarm_max_alarm); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeAlarm_min_warning"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeAlarm_min_warning); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeAlarm_max_warning"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeAlarm_max_warning); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeAlarm_delta_t"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeAlarm_delta_t); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeAlarm_delta_val"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeAlarm_delta_val); u_octet4_loop_Tango_AttributeAlarm_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeAlarm_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeAlarm_extensions); + item = proto_tree_add_uint(tree, hf_Tango_AttributeAlarm_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeAlarm_extensions); for (i_Tango_AttributeAlarm_extensions=0; i_Tango_AttributeAlarm_extensions < u_octet4_loop_Tango_AttributeAlarm_extensions; i_Tango_AttributeAlarm_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeAlarm_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeAlarm_extensions); } @@ -2660,7 +2113,7 @@ decode_Tango_AttributeAlarm_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ /* Struct = IDL:Tango/AttributeConfig_3:1.0 */ static void -decode_Tango_AttributeConfig_3_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 _U_) +decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2671,15 +2124,13 @@ decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro guint32 i_Tango_AttributeConfig_3_sys_extensions; /* Operation specific Variable declarations End */ - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_name); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_writable, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_writable, tvb, *offset-4, 4, u_octet4); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_data_format, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_data_format, tvb, *offset-4, 4, u_octet4); proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_data_type, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); @@ -2687,49 +2138,48 @@ decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_max_dim_y, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_description"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_description); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_label"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_label); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_standard_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_standard_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_display_unit"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_display_unit); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_format"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_format); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_min_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_min_value); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_max_value"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_max_value); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_writable_attr_name"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_writable_attr_name); - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_level, tvb, *offset-4, 4, u_octet4); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_level, tvb, *offset-4, 4, u_octet4); /* Begin struct "Tango_AttributeAlarm" */ - decode_Tango_AttributeAlarm_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeAlarm_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeAlarm" */ /* Begin struct "Tango_EventProperties" */ - decode_Tango_EventProperties_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_EventProperties_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_EventProperties" */ u_octet4_loop_Tango_AttributeConfig_3_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_3_extensions); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_3_extensions); for (i_Tango_AttributeConfig_3_extensions=0; i_Tango_AttributeConfig_3_extensions < u_octet4_loop_Tango_AttributeConfig_3_extensions; i_Tango_AttributeConfig_3_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_extensions); } u_octet4_loop_Tango_AttributeConfig_3_sys_extensions = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_sys_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_3_sys_extensions); + item = proto_tree_add_uint(tree, hf_Tango_AttributeConfig_3_sys_extensions, tvb,*offset-4, 4, u_octet4_loop_Tango_AttributeConfig_3_sys_extensions); for (i_Tango_AttributeConfig_3_sys_extensions=0; i_Tango_AttributeConfig_3_sys_extensions < u_octet4_loop_Tango_AttributeConfig_3_sys_extensions; i_Tango_AttributeConfig_3_sys_extensions++) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_AttributeConfig_3_sys_extensions"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_AttributeConfig_3_sys_extensions); } @@ -2737,43 +2187,43 @@ decode_Tango_AttributeConfig_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, pro /* Struct = IDL:Tango/DevInfo:1.0 */ static void -decode_Tango_DevInfo_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 _U_) +decode_Tango_DevInfo_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_dev_class"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_dev_class); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_server_id"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_server_id); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_server_host"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_server_host); proto_tree_add_uint(tree, hf_Tango_DevInfo_server_version, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_doc_url"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_doc_url); } /* Struct = IDL:Tango/DevInfo_3:1.0 */ static void -decode_Tango_DevInfo_3_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 _U_) +decode_Tango_DevInfo_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_3_dev_class"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_3_dev_class); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_3_server_id"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_3_server_id); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_3_server_host"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_3_server_host); proto_tree_add_uint(tree, hf_Tango_DevInfo_3_server_version, tvb, *offset-4, 4, get_CDR_long(tvb,offset,stream_is_big_endian, boundary)); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_3_doc_url"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_3_doc_url); - giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "Tango_DevInfo_3_dev_type"); + giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_Tango_DevInfo_3_dev_type); } /* Struct = IDL:Tango/DevCmdHistory:1.0 */ static void -decode_Tango_DevCmdHistory_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 _U_) +decode_Tango_DevCmdHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2782,19 +2232,19 @@ decode_Tango_DevCmdHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t /* Operation specific Variable declarations End */ /* Begin struct "Tango_TimeVal" */ - decode_Tango_TimeVal_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_TimeVal_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_TimeVal" */ proto_tree_add_boolean(tree, hf_Tango_DevCmdHistory_cmd_failed, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); - get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); + get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); u_octet4_loop_Tango_DevCmdHistory_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevCmdHistory_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_DevCmdHistory_errors); + item = proto_tree_add_uint(tree, hf_Tango_DevCmdHistory_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_DevCmdHistory_errors); for (i_Tango_DevCmdHistory_errors=0; i_Tango_DevCmdHistory_errors < u_octet4_loop_Tango_DevCmdHistory_errors; i_Tango_DevCmdHistory_errors++) { /* Begin struct "Tango_DevError" */ - decode_Tango_DevError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevError" */ } @@ -2802,7 +2252,7 @@ decode_Tango_DevCmdHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_t /* Struct = IDL:Tango/DevAttrHistory:1.0 */ static void -decode_Tango_DevAttrHistory_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 _U_) +decode_Tango_DevAttrHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { /* Operation specific Variable declarations Begin */ @@ -2813,15 +2263,15 @@ decode_Tango_DevAttrHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ proto_tree_add_boolean(tree, hf_Tango_DevAttrHistory_attr_failed, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "Tango_AttributeValue" */ - decode_Tango_AttributeValue_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeValue_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeValue" */ u_octet4_loop_Tango_DevAttrHistory_errors = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); - proto_tree_add_uint(tree, hf_Tango_DevAttrHistory_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_DevAttrHistory_errors); + item = proto_tree_add_uint(tree, hf_Tango_DevAttrHistory_errors, tvb,*offset-4, 4, u_octet4_loop_Tango_DevAttrHistory_errors); for (i_Tango_DevAttrHistory_errors=0; i_Tango_DevAttrHistory_errors < u_octet4_loop_Tango_DevAttrHistory_errors; i_Tango_DevAttrHistory_errors++) { /* Begin struct "Tango_DevError" */ - decode_Tango_DevError_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_DevError_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_DevError" */ } @@ -2829,13 +2279,13 @@ decode_Tango_DevAttrHistory_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_ /* Struct = IDL:Tango/DevAttrHistory_3:1.0 */ static void -decode_Tango_DevAttrHistory_3_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 _U_) +decode_Tango_DevAttrHistory_3_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { proto_tree_add_boolean(tree, hf_Tango_DevAttrHistory_3_attr_failed, tvb, *offset-1, 1, get_CDR_boolean(tvb,offset)); /* Begin struct "Tango_AttributeValue_3" */ - decode_Tango_AttributeValue_3_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); + decode_Tango_AttributeValue_3_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian); /* End struct "Tango_AttributeValue_3" */ } @@ -2874,7 +2324,7 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M if(header->message_type == Reply) { /* fill-up info column */ col_append_fstr(pinfo->cinfo, COL_INFO, " op = %s",operation); - }; + } /* fill-up the field */ pi=proto_tree_add_string(ptree, hf_operationrequest, tvb, 0, 0, operation); PROTO_ITEM_SET_GENERATED(pi); @@ -2884,19 +2334,13 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M static gboolean dissect_tango(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) { - - gboolean stream_is_big_endian; /* big endianess */ proto_item *item _U_; proto_tree *tree _U_; - - stream_is_big_endian = is_big_endian(header); /* get endianess */ + gboolean stream_is_big_endian = is_big_endian(header); /* get endianess */ /* If we have a USER Exception, then decode it and return */ - if ((header->message_type == Reply) && (header->rep_status == USER_EXCEPTION)) { - return decode_user_exception(tvb, pinfo, ptree, offset, header, operation, stream_is_big_endian); - } switch(header->message_type) { @@ -3118,7 +2562,6 @@ dissect_tango(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, return TRUE; } - break; case CancelRequest: @@ -3140,13 +2583,10 @@ dissect_tango(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, } /* End of main dissector */ - /* Register the protocol with Wireshark */ - -void proto_register_giop_tango(void) { - +void proto_register_giop_tango(void) +{ /* setup list of header fields */ - static hf_register_info hf[] = { /* field that indicates the currently ongoing request/reply exchange */ {&hf_operationrequest, {"Request_Operation","giop-tango.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}}, @@ -3331,41 +2771,25 @@ void proto_register_giop_tango(void) { }; /* Register the protocol name and description */ - proto_tango = proto_register_protocol("Tango Dissector Using GIOP API" , "TANGO", "giop-tango" ); - proto_register_field_array(proto_tango, hf, array_length(hf)); - proto_register_subtree_array(ett,array_length(ett)); - } - /* register me as handler for these interfaces */ - -void proto_reg_handoff_giop_tango(void) { - - +void proto_reg_handoff_giop_tango(void) +{ /* Register for Explicit Dissection */ - register_giop_user_module(dissect_tango, "TANGO", "Tango/Device", proto_tango ); /* explicit dissector */ - /* Register for Explicit Dissection */ - register_giop_user_module(dissect_tango, "TANGO", "Tango/Device_2", proto_tango ); /* explicit dissector */ - /* Register for Explicit Dissection */ - register_giop_user_module(dissect_tango, "TANGO", "Tango/Device_3", proto_tango ); /* explicit dissector */ - /* Register for Heuristic Dissection */ - register_giop_user(dissect_tango, "TANGO" ,proto_tango); /* heuristic dissector */ - - } diff --git a/tools/wireshark_gen.py b/tools/wireshark_gen.py index f66ba64a93..f81af3e2ce 100755 --- a/tools/wireshark_gen.py +++ b/tools/wireshark_gen.py @@ -75,8 +75,8 @@ import tempfile # # TODO -- FS # -# 1. generate hf[] data for searchable fields (but what is searchable?) -# 2. add item instead of add_text() +# 1. generate hf[] data for searchable fields (but what is searchable?) [done, could be improved] +# 2. add item instead of add_text() [done] # 3. sequence handling [done] # 4. User Exceptions [done] # 5. Fix arrays, and structs containing arrays [done] @@ -96,8 +96,8 @@ import tempfile # 14. Dont generate code for empty operations (cf: exceptions without members) # 15. Generate code to display Enums numerically and symbolically [done] # 16. Place structs/unions in subtrees -# 17. Recursive struct and union handling [done ] -# 18. Improve variable naming for display (eg: structs, unions etc) +# 17. Recursive struct and union handling [done] +# 18. Improve variable naming for display (eg: structs, unions etc) [done] # # Also test, Test, TEST # @@ -195,9 +195,8 @@ class wireshark_gen_C: self.genEthCopyright() # Wireshark Copyright comments. self.genGPL() # GPL license self.genIncludes() - self.genDeclares(oplist,atlist,enlist,stlist,unlist) self.genProtocol() - self.genRegisteredFields() + self.genDeclares(oplist,atlist,enlist,stlist,unlist) if (len(atlist) > 0): self.genAtList(atlist) # string constant declares for Attributes if (len(enlist) > 0): @@ -460,17 +459,6 @@ class wireshark_gen_C: self.st.out(self.template_protocol, dissector_name=self.dissname) self.st.out(self.template_init_boundary) - - # - # genProtoAndRegisteredFields - # - # - - def genRegisteredFields(self): - self.st.out(self.template_registered_fields ) - - - # # genMainEntryStart # @@ -726,11 +714,13 @@ class wireshark_gen_C: self.st.out(self.template_helper_function_vars_end ) for m in ex.members(): - #print "XXX genExhelper, member = ", m, "member type = ", m.memberType() - + if self.DEBUG: + print "XXX genExhelper, member = ", m, "member type = ", m.memberType() for decl in m.declarators(): - #print "XXX genExhelper, d = ", decl + if self.DEBUG: + print "XXX genExhelper, d = ", decl + if decl.sizes(): # an array indices = self.get_indices_from_sizes(decl.sizes()) string_indices = '%i ' % indices # convert int to string @@ -1068,15 +1058,15 @@ class wireshark_gen_C: self.get_CDR_struct(type,pn) elif pt == idltype.tk_TypeCode: # will I ever get here ? self.get_CDR_TypeCode(pn) - elif pt == idltype.tk_sequence and \ - type.unalias().seqType().kind() == idltype.tk_octet: - self.get_CDR_sequence_octet(type,pn) elif pt == idltype.tk_sequence: - self.get_CDR_sequence(type,pn) + if type.unalias().seqType().kind() == idltype.tk_octet: + self.get_CDR_sequence_octet(type,pn) + else: + self.get_CDR_sequence(type,pn) elif pt == idltype.tk_objref: self.get_CDR_objref(type,pn) elif pt == idltype.tk_array: - self.get_CDR_array(type,pn) + pn = pn # Supported elsewhere elif pt == idltype.tk_union: self.get_CDR_union(type,pn) elif pt == idltype.tk_alias: @@ -1153,7 +1143,7 @@ class wireshark_gen_C: self.addvar(self.c_u_octet4) def get_CDR_string(self,pn): - self.st.out(self.template_get_CDR_string, varname=pn) + self.st.out(self.template_get_CDR_string, hfname=pn) def get_CDR_wstring(self,pn): self.st.out(self.template_get_CDR_wstring, varname=pn) @@ -1208,7 +1198,7 @@ class wireshark_gen_C: # hf array. # - def getCDR_hf(self,type,desc,filter,hf_name="fred",): + def getCDR_hf(self,type,desc,filter,hf_name="fred"): pt = type.unalias().kind() # param CDR type pn = hf_name # param name @@ -1224,7 +1214,7 @@ class wireshark_gen_C: elif pt == idltype.tk_ulonglong: self.get_CDR_ulonglong_hf(pn, desc, filter, self.dissname) elif pt == idltype.tk_void: - pt = pt # do nothing + pt = pt # no hf_ variables needed elif pt == idltype.tk_short: self.get_CDR_short_hf(pn, desc, filter, self.dissname) elif pt == idltype.tk_long: @@ -1236,8 +1226,7 @@ class wireshark_gen_C: elif pt == idltype.tk_double: self.get_CDR_double_hf(pn, desc, filter, self.dissname) elif pt == idltype.tk_fixed: - pt = pt # XXX - do nothing (for now) - #self.get_CDR_fixed(type.unalias(),pn) + pt = pt # no hf_ variables needed elif pt == idltype.tk_boolean: self.get_CDR_boolean_hf(pn, desc, filter, self.dissname) elif pt == idltype.tk_char: @@ -1245,8 +1234,7 @@ class wireshark_gen_C: elif pt == idltype.tk_octet: self.get_CDR_octet_hf(pn, desc, filter, self.dissname) elif pt == idltype.tk_any: - pt = pt # XXX - do nothing (for now) - #self.get_CDR_any(pn) + pt = pt # no hf_ variables needed elif pt == idltype.tk_string: self.get_CDR_string_hf(pn, desc, filter, self.dissname) elif pt == idltype.tk_wstring: @@ -1256,8 +1244,7 @@ class wireshark_gen_C: elif pt == idltype.tk_enum: self.get_CDR_enum_hf(pn, type, desc, filter, self.dissname) elif pt == idltype.tk_struct: - pt = pt # XXX - do nothing (for now) - #self.get_CDR_struct(type,pn) + pt = pt # no hf_ variables needed (should be already contained in struct members) elif pt == idltype.tk_TypeCode: # will I ever get here ? self.get_CDR_TypeCode_hf(pn, desc, filter, self.dissname) elif pt == idltype.tk_sequence: @@ -1266,14 +1253,11 @@ class wireshark_gen_C: else: self.get_CDR_sequence_hf(type, pn, desc, filter, self.dissname) elif pt == idltype.tk_objref: - pt = pt # XXX - do nothing (for now) - #self.get_CDR_objref(type,pn) + pt = pt # no object specific hf_ variables used, use generic ones from giop dissector elif pt == idltype.tk_array: - pt = pt # XXX - do nothing (for now) - #self.get_CDR_array(type,pn) + pt = pt # Supported elsewhere elif pt == idltype.tk_union: - pt = pt # XXX - do nothing (for now) - #self.get_CDR_union(type,pn) + pt = pt # no hf_ variables needed (should be already contained in union members) elif pt == idltype.tk_alias: if self.DEBUG: print "XXXXX Alias type hf XXXXX " , type @@ -1321,10 +1305,8 @@ class wireshark_gen_C: self.st.out(self.template_get_CDR_octet_hf, hfname=pn, dissector_name=diss, descname=desc, filtername=filter) def get_CDR_enum_hf(self,pn,type,desc,filter,diss): - #self.st.out(self.template_get_CDR_enum_hf, hfname=pn, dissector_name=diss, descname=desc, filtername=filter) sname = self.namespace(type.unalias(), "_") self.st.out(self.template_get_CDR_enum_symbolic_hf, valstringarray=sname,hfname=pn, dissector_name=diss, descname=desc, filtername=filter) -# self.addvar(self.c_u_octet4) def get_CDR_string_hf(self,pn,desc,filter,diss): self.st.out(self.template_get_CDR_string_hf, hfname=pn, dissector_name=diss, descname=desc, filtername=filter) @@ -1341,7 +1323,6 @@ class wireshark_gen_C: def get_CDR_TypeCode_hf(self,pn,desc,filter,diss): self.st.out(self.template_get_CDR_TypeCode_hf, hfname=pn, dissector_name=diss, descname=desc, filtername=filter) -# self.addvar(self.c_u_octet4) def get_CDR_sequence_octet_hf(self,type,pn,desc,filter,diss): self.st.out(self.template_get_CDR_sequence_octet_hf, hfname=pn, dissector_name=diss, descname=desc, filtername=filter) @@ -1666,21 +1647,6 @@ class wireshark_gen_C: self.addvar("gchar * text_seq_" + pn + ";") - # - # Generate code to access arrays, - # - # This is handled elsewhere. Arrays are either typedefs or in - # structs - # - # TODO - Remove this - # - - def get_CDR_array(self,type, decl): - if self.DEBUG: - print "XXX get_CDR_array called " - print "XXX array size = " ,decl.sizes() - - # # namespace() # @@ -1942,8 +1908,8 @@ class wireshark_gen_C: template_helper_function_start = """\ static void decode_@sname@(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) -{ -""" +{""" + template_helper_function_end = """\ } """ @@ -1951,23 +1917,20 @@ decode_@sname@(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, # proto_reg_handoff() templates # - template_proto_reg_handoff_start = """ + template_proto_reg_handoff_start = """\ /* register me as handler for these interfaces */ +void proto_reg_handoff_giop_@dissector_name@(void) +{""" -void proto_reg_handoff_giop_@dissector_name@(void) { - -""" template_proto_reg_handoff_body = """ /* Register for Explicit Dissection */ +register_giop_user_module(dissect_@dissector_name@, \"@protocol_name@\", \"@interface@\", proto_@dissector_name@ ); /* explicit dissector */""" -register_giop_user_module(dissect_@dissector_name@, \"@protocol_name@\", \"@interface@\", proto_@dissector_name@ ); /* explicit dissector */ -""" template_proto_reg_handoff_heuristic = """ /* Register for Heuristic Dissection */ +register_giop_user(dissect_@dissector_name@, \"@protocol_name@\" ,proto_@dissector_name@); /* heuristic dissector */""" -register_giop_user(dissect_@dissector_name@, \"@protocol_name@\" ,proto_@dissector_name@); /* heuristic dissector */ -""" - template_proto_reg_handoff_end = """ + template_proto_reg_handoff_end = """\ } """ @@ -1986,18 +1949,8 @@ static gint ett_@dissector_name@ = -1; template_init_boundary = """ /* Initialise the initial Alignment */ -static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */ -""" - # - # Initialize the Registered fields - # - - template_registered_fields = """ +static guint32 boundary = GIOP_HEADER_SIZE; /* initial value */""" -/* Initialise the Registered fields */ - -/* TODO - Use registered fields */ -""" # # plugin_register and plugin_reg_handoff templates # @@ -2024,13 +1977,10 @@ plugin_reg_handoff(void){ # template_proto_register_start = """ - /* Register the protocol with Wireshark */ - -void proto_register_giop_@dissector_name@(void) { - +void proto_register_giop_@dissector_name@(void) +{ /* setup list of header fields */ - static hf_register_info hf[] = { /* field that indicates the currently ongoing request/reply exchange */ {&hf_operationrequest, {"Request_Operation","giop-@dissector_name@.Request_Operation",FT_STRING,BASE_NONE,NULL,0x0,NULL,HFILL}},""" @@ -2045,13 +1995,9 @@ void proto_register_giop_@dissector_name@(void) { }; /* Register the protocol name and description */ - proto_@dissector_name@ = proto_register_protocol(\"@description@\" , \"@protocol_name@\", \"giop-@dissector_name@\" ); - proto_register_field_array(proto_@dissector_name@, hf, array_length(hf)); - proto_register_subtree_array(ett,array_length(ett)); - } """ @@ -2091,87 +2037,74 @@ if (strcmp(operation, "@opname@") == 0 # template_helper_switch_msgtype_start = """\ +switch(header->message_type) {""" -switch(header->message_type) { -""" template_helper_switch_msgtype_default_start = """\ default: - { /* Unknown GIOP Message */ - expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } -""" + expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);""" + template_helper_switch_msgtype_default_end = """\ -break; -""" +break;""" + template_helper_switch_msgtype_end = """\ -} /* switch(header->message_type) */ -""" +} /* switch(header->message_type) */""" + template_helper_switch_msgtype_request_start = """\ -case Request: -""" +case Request:""" + template_helper_switch_msgtype_request_end = """\ -break; -""" +break;""" + template_helper_switch_msgtype_reply_start = """\ -case Reply: -""" +case Reply:""" + template_helper_switch_msgtype_reply_no_exception_start = """\ -case NO_EXCEPTION: -""" +case NO_EXCEPTION:""" + template_helper_switch_msgtype_reply_no_exception_end = """\ -break; -""" +break;""" + template_helper_switch_msgtype_reply_user_exception_start = """\ -case USER_EXCEPTION: -""" +case USER_EXCEPTION:""" + template_helper_switch_msgtype_reply_user_exception_end = """\ -break; -""" +break;""" + template_helper_switch_msgtype_reply_default_start = """\ default: - { /* Unknown Exception */ - expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status); - } -""" + expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown exception %d", header->rep_status);""" + template_helper_switch_msgtype_reply_default_end = """\ - break; -""" + break;""" + template_helper_switch_msgtype_reply_end = """\ -break; -""" +break;""" + template_helper_switch_msgtype_default_start = """\ default: - { /* Unknown GIOP Message */ - expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type); - } -""" + expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown GIOP message %d", header->message_type);""" + template_helper_switch_msgtype_default_end = """\ - break; -""" + break;""" + template_helper_switch_rep_status_start = """\ -switch(header->rep_status) { -""" +switch(header->rep_status) {""" + template_helper_switch_rep_status_default_start = """\ default: - { - /* Unknown Reply Status */ - expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown reply status %d", header->rep_status); - } - -""" + expert_add_info_format(pinfo, item, PI_MALFORMED, PI_ERROR, "Unknown reply status %d", header->rep_status);""" + template_helper_switch_rep_status_default_end = """\ - break; -""" + break;""" + template_helper_switch_rep_status_end = """\ +} /* switch(header->rep_status) */ -} /* switch(header->message_type) */ - -break; -""" +break;""" # # Templates for get_CDR_xxx accessors @@ -2214,19 +2147,18 @@ proto_tree_add_uint(tree, hf_@hfname@, tvb, *offset-1, 1, get_CDR_char(tvb,offse proto_tree_add_uint(tree, hf_@hfname@, tvb, *offset-1, 1, get_CDR_octet(tvb,offset)); """ template_get_CDR_any = """\ -get_CDR_any(tvb,tree,offset,stream_is_big_endian, boundary, header); +get_CDR_any(tvb, pinfo, tree, item, offset, stream_is_big_endian, boundary, header); """ template_get_CDR_fixed = """\ -get_CDR_fixed(tvb, &seq, offset, @digits@, @scale@); +get_CDR_fixed(tvb, pinfo, item, &seq, offset, @digits@, @scale@); proto_tree_add_text(tree,tvb,*offset-@length@, @length@, "@varname@ < @digits@, @scale@> = %s",seq); """ template_get_CDR_enum_symbolic = """\ - u_octet4 = get_CDR_enum(tvb,offset,stream_is_big_endian, boundary); -proto_tree_add_uint(tree, hf_@hfname@, tvb, *offset-4, 4, u_octet4); +item = proto_tree_add_uint(tree, hf_@hfname@, tvb, *offset-4, 4, u_octet4); """ template_get_CDR_string = """\ -giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "@varname@"); +giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, hf_@hfname@); """ template_get_CDR_wstring = """\ u_octet4 = get_CDR_wstring(tvb, &seq, offset, stream_is_big_endian, boundary, header); @@ -2247,17 +2179,16 @@ if (tree) { } """ template_get_CDR_TypeCode = """\ -u_octet4 = get_CDR_typeCode(tvb, tree, offset, stream_is_big_endian, boundary, header); - +u_octet4 = get_CDR_typeCode(tvb, pinfo, tree, offset, stream_is_big_endian, boundary, header); """ template_get_CDR_object = """\ get_CDR_object(tvb, pinfo, tree, offset, stream_is_big_endian, boundary); - """ + template_get_CDR_sequence_length = """\ u_octet4_loop_@seqname@ = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary); -proto_tree_add_uint(tree, hf_@seqname@, tvb,*offset-4, 4, u_octet4_loop_@seqname@); +item = proto_tree_add_uint(tree, hf_@seqname@, tvb,*offset-4, 4, u_octet4_loop_@seqname@); """ template_get_CDR_sequence_loop_start = """\ for (i_@seqname@=0; i_@seqname@ < u_octet4_loop_@seqname@; i_@seqname@++) { @@ -2469,7 +2400,7 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M if(header->message_type == Reply) { /* fill-up info column */ col_append_fstr(pinfo->cinfo, COL_INFO, " op = %s",operation); - }; + } /* fill-up the field */ pi=proto_tree_add_string(ptree, hf_operationrequest, tvb, 0, 0, operation); PROTO_ITEM_SET_GENERATED(pi); @@ -2479,21 +2410,16 @@ process_RequestOperation(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, M static gboolean dissect_@dissname@(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset, MessageHeader *header, gchar *operation, gchar *idlname) { - - gboolean stream_is_big_endian; /* big endianess */ proto_item *item _U_; proto_tree *tree _U_; - - stream_is_big_endian = is_big_endian(header); /* get endianess */ + gboolean stream_is_big_endian = is_big_endian(header); /* get endianess */ /* If we have a USER Exception, then decode it and return */ - if ((header->message_type == Reply) && (header->rep_status == USER_EXCEPTION)) { - return decode_user_exception(tvb, pinfo, ptree, offset, header, operation, stream_is_big_endian); - } """ + template_main_dissector_switch_msgtype_start = """\ switch(header->message_type) { """ @@ -2502,7 +2428,6 @@ case Request: case Reply: """ template_main_dissector_switch_msgtype_end_request_reply = """\ - break; """ template_main_dissector_switch_msgtype_all_other_msgtype = """\ @@ -2565,7 +2490,6 @@ default: static gboolean decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptree _U_, int *offset _U_, MessageHeader *header, gchar *operation _U_, gboolean stream_is_big_endian _U_) { - proto_tree *tree _U_; if (!header->exception_id) @@ -2589,11 +2513,8 @@ if (strcmp(header->exception_id, "@exname@") == 0) { # End of Main delegator for exception handling # - template_main_exception_delegator_end = """\ - - + template_main_exception_delegator_end = """ return FALSE; /* user exception not found */ - } """ @@ -2607,6 +2528,7 @@ if (strcmp(header->exception_id, "@exname@") == 0) { static void decode_ex_@sname@(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item *item _U_; """ template_exception_helper_function_end = """\ @@ -2622,7 +2544,7 @@ decode_ex_@sname@(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U template_struct_helper_function_start = """\ /* Struct = @stname@ */ static void -decode_@sname@_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 _U_) +decode_@sname@_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { """ @@ -2640,6 +2562,7 @@ decode_@sname@_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U static void decode_@sname@_un(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; """ template_union_helper_function_end = """\ @@ -2752,6 +2675,7 @@ if (strcmp(operation, set_@sname@_at) == 0 && (header->message_type == Request) static void decode_@sname@_at(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_) { + proto_item* item _U_; """ template_attribute_helper_function_end = """\ @@ -2864,18 +2788,18 @@ static int hf_@name@ = -1;""" static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int *offset); """ - template_prototype_struct_start = """ + template_prototype_struct_start = """\ /* Struct prototype declaration Start */ """ - template_prototype_struct_end = """ + template_prototype_struct_end = """\ /* Struct prototype declaration End */ """ - template_prototype_struct_body = """ + template_prototype_struct_body = """\ /* Struct = @stname@ */ -static void decode_@name@_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 _U_); +static void decode_@name@_st(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, proto_item *item _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_); """ template_decode_struct = """\ -decode_@name@_st(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian);""" +decode_@name@_st(tvb, pinfo, tree, item, offset, header, operation, stream_is_big_endian);""" template_prototype_union_start = """\ /* Union prototype declaration Start */""" -- cgit v1.2.3