aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-giop.c162
-rw-r--r--epan/dissectors/packet-giop.h3
-rw-r--r--epan/dissectors/packet-parlay.c1506
-rwxr-xr-xtools/wireshark_gen.py9
4 files changed, 764 insertions, 916 deletions
diff --git a/epan/dissectors/packet-giop.c b/epan/dissectors/packet-giop.c
index 6285986d06..d0667bd812 100644
--- a/epan/dissectors/packet-giop.c
+++ b/epan/dissectors/packet-giop.c
@@ -1245,7 +1245,7 @@ static guint32 string_to_IOR(guchar *in, guint32 in_len, guint8 **out){
gint8 tmpval; /* complete value */
guint32 i;
- *out = g_new0(guint8, in_len); /* allocate buffer */
+ *out = ep_alloc_array0(guint8, in_len); /* allocate buffer */
if (*out == NULL) {
return 0;
@@ -1322,7 +1322,7 @@ static void read_IOR_strings_from_file(const gchar *name, int max_iorlen) {
return;
}
- buf = g_malloc0(max_iorlen+1); /* input buf */
+ buf = ep_alloc0(max_iorlen+1); /* input buf */
while ((len = giop_getline(fp,buf,max_iorlen+1)) > 0) {
my_offset = 0; /* reset for every IOR read */
@@ -1347,14 +1347,9 @@ static void read_IOR_strings_from_file(const gchar *name, int max_iorlen) {
tvb_free(tvb);
}
-
- g_free(out);
-
}
fclose(fp); /* be nice */
-
- g_free(buf);
}
@@ -1867,20 +1862,19 @@ static gboolean try_explicit_giop_dissector(tvbuff_t *tvb, packet_info *pinfo, p
-/* Take in an array of char and create a new string.
+/* Take in an array of char and create a new ephemeral string.
* Replace non-printable characters with periods.
*
* The array may contain \0's so dont use strdup
* The string is \0 terminated, and thus longer than
* the initial sequence.
- * Caller must free the new string.
*/
gchar * make_printable_string (gchar *in, guint32 len) {
guint32 i = 0;
gchar *print_string = NULL;
- print_string = (gchar * )g_malloc0(len + 1); /* make some space and zero it */
+ print_string = (gchar * )ep_alloc0(len + 1); /* make some space and zero it */
memcpy(print_string, in, len); /* and make a copy of input data */
for(i=0; i < len; i++) {
@@ -2165,7 +2159,7 @@ void get_CDR_fixed(tvbuff_t *tvb, gchar **seq, gint *offset, guint32 digits, gin
*/
sindex = 0; /* reset */
- *seq = g_new0(gchar, slen + 3); /* allocate temp buffer , including space for sign, decimal point and
+ *seq = ep_alloc_array0(gchar, slen + 3); /* allocate temp buffer , including space for sign, decimal point and
* \0 -- TODO check slen is reasonable first */
#if DEBUG
printf("giop:get_CDR_fixed(): sign = %.2x \n", sign);
@@ -2363,21 +2357,11 @@ guint8 get_CDR_octet(tvbuff_t *tvb, int *offset) {
void get_CDR_octet_seq(tvbuff_t *tvb, gchar **seq, int *offset, guint32 len) {
/*
- * Make sure that the entire sequence of octets is in the buffer before
- * allocating the buffer, so that we don't have to worry about freeing
- * the buffer, and so that we don't try to allocate a buffer bigger
- * than the data we'll actually be copying, and thus don't run the risk
- * of crashing if the buffer is *so* big that we fail to allocate it
- * and "g_new0()" aborts.
- */
- tvb_ensure_bytes_exist(tvb, *offset, len);
-
- /*
* XXX - should we just allocate "len" bytes, and have "get_CDR_string()"
* do what we do now, and null-terminate the string (which also means
* we don't need to zero out the entire allocation, just the last byte)?
*/
- *seq = g_new0(gchar, len + 1);
+ *seq = ep_alloc_array0(gchar, len + 1);
tvb_memcpy( tvb, *seq, *offset, len);
*offset += len;
}
@@ -2424,8 +2408,6 @@ giop_add_CDR_string(proto_tree *tree, tvbuff_t *tvb, int *offset,
proto_tree_add_text(tree,tvb,*offset-u_octet4,u_octet4,"%s (%u) = %s",
varname, u_octet4, (u_octet4 > 0) ? seq : "");
}
-
- g_free(seq); /* free buffer */
}
@@ -2462,7 +2444,7 @@ guint32 get_CDR_string(tvbuff_t *tvb, gchar **seq, int *offset, gboolean stream_
if (slength > 0) {
get_CDR_octet_seq(tvb, seq, offset, slength);
} else {
- *seq = g_strdup(""); /* zero-length string */
+ *seq = ep_strdup(""); /* zero-length string */
}
return slength; /* return length */
@@ -2739,8 +2721,6 @@ gint get_CDR_wchar(tvbuff_t *tvb, gchar **seq, int *offset, MessageHeader * head
/* now turn octets (wchar) into something that can be printed by the user */
*seq = make_printable_string(raw_wstring, slength);
-
- g_free(raw_wstring);
}
/* if GIOP 1.1 negate length to indicate not an item to add to tree */
@@ -2812,8 +2792,6 @@ guint32 get_CDR_wstring(tvbuff_t *tvb, gchar **seq, int *offset, gboolean stream
/* now turn octets (wstring) into something that can be printed by the user */
*seq = make_printable_string(raw_wstring, slength);
-
- g_free(raw_wstring);
}
return slength; /* return length */
@@ -2881,21 +2859,18 @@ dissect_target_address(tvbuff_t * tvb, packet_info *pinfo, int *offset, proto_tr
if (len > 0) {
get_CDR_octet_seq(tvb, &object_key, offset, len);
- p_object_key = make_printable_string( object_key, len );
if(tree)
{
+ p_object_key = make_printable_string( object_key, len );
proto_tree_add_text (tree, tvb, *offset -len, len,
"KeyAddr (object key): %s", p_object_key);
}
- g_free( p_object_key );
if (object_key_len) {
*object_key_len = len;
}
if (object_key_val) {
*object_key_val = object_key;
- } else {
- g_free( object_key );
}
}
break;
@@ -2926,7 +2901,6 @@ dissect_reply_body (tvbuff_t *tvb, guint offset, packet_info *pinfo,
guint sequence_length;
gboolean exres = FALSE; /* result of trying explicit dissectors */
- gchar * repoid = NULL; /* Repositor ID looked up from objkey */
gint reply_body_length;
/*
@@ -2956,13 +2930,7 @@ dissect_reply_body (tvbuff_t *tvb, guint offset, packet_info *pinfo,
if (sequence_length != 0 && sequence_length < ITEM_LABEL_LENGTH)
{
#if 1
-
- tvb_ensure_bytes_exist(tvb, offset, sequence_length);
- header->exception_id = g_new0(gchar,sequence_length ); /* allocate buffer */
-
- /* read exception id from buffer and store in*/
-
- tvb_get_nstringz0(tvb,offset,sequence_length, header->exception_id );
+ header->exception_id = tvb_get_ephemeral_stringz(tvb,offset, &sequence_length);
if (tree)
{
@@ -3080,8 +3048,6 @@ dissect_reply_body (tvbuff_t *tvb, guint offset, packet_info *pinfo,
} /* switch */
- g_free(repoid); /* free resource */
-
return; /* done */
}
@@ -3379,7 +3345,6 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
proto_tree_add_text (request_tree, tvb, offset-3, 3,
"Reserved: %x %x %x", reserved[0], reserved[1], reserved[2]);
}
- g_free(reserved);
}
/* Prior to GIOP 1.2, MIOP profile address prefixed with 'MIOP' */
@@ -3429,22 +3394,11 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
}
}
- /*
- * Register a cleanup function in case on of our tvbuff accesses
- * throws an exception. We need to clean up objkey.
- */
- CLEANUP_PUSH (g_free, objkey);
-
{
- /* XXX: Get operation string, create a copy in ep memory and then g_free
- the string returned from get_CDR_string(). This is a hack so that
- a lexically nested CLEANUP_PUSH & etc is not req'd below.
- [The nested CLEANUP_PUSH causes a gcc -Wshadow warning :( ] */
gchar *tmp;
/* length of operation string and string */
len = get_CDR_string(tvb, &tmp, &offset, stream_is_big_endian, GIOP_HEADER_SIZE);
operation = ep_strdup(tmp);
- g_free(tmp);
}
if(tree)
{
@@ -3465,14 +3419,6 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
}
}
-#if 0 /* See comment above re hack ... */
- /*
- * Register a cleanup function in case on of our tvbuff accesses
- * throws an exception. We need to clean up operation.
- */
- CLEANUP_PUSH(g_free, operation);
-#endif
-
/* length of requesting_principal string */
len = get_CDR_ulong(tvb, &offset, stream_is_big_endian,GIOP_HEADER_SIZE);
if(tree)
@@ -3485,17 +3431,14 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
{
get_CDR_octet_seq(tvb, &requesting_principal, &offset, len);
- print_requesting_principal = make_printable_string(requesting_principal, len);
if(tree)
{
+ print_requesting_principal = make_printable_string(requesting_principal, len);
proto_tree_add_text (request_tree, tvb, offset - len, len,
/**/ "Requesting Principal: %s", print_requesting_principal);
}
-
- g_free( print_requesting_principal );
- g_free( requesting_principal );
}
@@ -3539,7 +3482,6 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
"Type Id length: %d", len);
proto_tree_add_text(request_tree, tvb, offset - len, len,
"Type Id: %s", type_id);
- g_free(type_id);
}
if(! exres) {
@@ -3549,21 +3491,6 @@ dissect_giop_request_1_1 (tvbuff_t * tvb, packet_info * pinfo,
"Stub data (%d byte%s)", stub_length,
plurality(stub_length, "", "s"));
}
-
-#if 0 /* See comment above re hack ... */
- /*
- * We're done with operation, so we can call the cleanup handler to free
- * it, and then pop the cleanup handler.
- */
- CLEANUP_CALL_AND_POP;
-#endif
-
- /*
- * We're done with objkey, so we can call the cleanup handler to free
- * it, and then pop the cleanup handler.
- */
- CLEANUP_CALL_AND_POP;
-
}
/** The format of a GIOP 1.2 RequestHeader message is
@@ -3632,13 +3559,11 @@ dissect_giop_request_1_2 (tvbuff_t * tvb, packet_info * pinfo,
proto_tree_add_text (request_tree, tvb, offset-3, 3,
"Reserved: %x %x %x", reserved[0], reserved[1], reserved[2]);
}
- g_free(reserved);
dissect_target_address(tvb, pinfo, &offset, request_tree, stream_is_big_endian,
&objkey_len, &objkey);
if (objkey) {
repoid = get_repoid_from_objkey(giop_objkey_hash, objkey, objkey_len);
- g_free(objkey);
}
/* length of operation string */
@@ -3664,12 +3589,6 @@ dissect_giop_request_1_2 (tvbuff_t * tvb, packet_info * pinfo,
}
/*
- * Register a cleanup function in case on of our tvbuff accesses
- * throws an exception. We need to clean up operation.
- */
- CLEANUP_PUSH(g_free, operation);
-
- /*
* Decode IOP::ServiceContextList
*/
@@ -3719,7 +3638,6 @@ dissect_giop_request_1_2 (tvbuff_t * tvb, packet_info * pinfo,
"Type Id length: %d", len);
proto_tree_add_text(request_tree, tvb, offset - len, len,
"Type Id: %s", type_id);
- g_free(type_id);
}
if(! exres) {
@@ -3729,12 +3647,6 @@ dissect_giop_request_1_2 (tvbuff_t * tvb, packet_info * pinfo,
"Stub data (%d byte%s)", stub_length,
plurality(stub_length, "", "s"));
}
-
- /*
- * We're done with operation, so we can call the cleanup handler to free
- * it, and then pop the cleanup handler.
- */
- CLEANUP_CALL_AND_POP;
}
static void
@@ -4122,15 +4034,6 @@ static void dissect_giop_common (tvbuff_t * tvb, packet_info * pinfo, proto_tree
break;
} /* switch message_type */
-
-
- /*
- * XXX - we should catch exceptions here, so that we can free
- * this if an exception is thrown.
- * We'd then have to forward the exception.
- */
- if (header.exception_id != NULL)
- g_free(header.exception_id);
}
static guint
@@ -4637,14 +4540,6 @@ static void decode_IOR(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int
}
}
- /*
- * Register a cleanup function in case on of our tvbuff accesses
- * throws an exception. We need to clean up repobuf.
- * We can't free it yet, as we must wait until we have the object
- * key, as we have to add both to the hash table.
- */
- CLEANUP_PUSH(g_free, repobuf);
-
/* Now get a sequence of profiles */
/* Get sequence length (number of elements) */
@@ -4660,13 +4555,6 @@ static void decode_IOR(tvbuff_t *tvb, packet_info *pinfo, proto_tree *ptree, int
for (i=0; i< seqlen_p; i++) { /* for every TaggedProfile */
decode_TaggedProfile(tvb, pinfo, tree, offset, boundary, stream_is_big_endian, repobuf);
}
-
- /*
- * We're done with repobuf, so we can call the cleanup handler to free
- * it, and then pop the cleanup handler.
- */
- CLEANUP_CALL_AND_POP;
-
}
static void decode_TaggedProfile(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int *offset,
@@ -4726,17 +4614,12 @@ static void decode_TaggedProfile(tvbuff_t *tvb, packet_info *pinfo, proto_tree *
/* Make a printable string */
- p_profile_data = make_printable_string( profile_data, seqlen_pd -1);
if(tree) {
+ p_profile_data = make_printable_string( profile_data, seqlen_pd -1);
proto_tree_add_text (tree, tvb, *offset -seqlen_pd + 1, seqlen_pd - 1,
"Profile Data: %s", p_profile_data);
}
-
- g_free(p_profile_data);
-
- g_free(profile_data);
-
break;
}
@@ -4794,8 +4677,6 @@ static void decode_IIOP_IOR_profile(tvbuff_t *tvb, packet_info *pinfo, proto_tre
}
}
- g_free(buf); /* dont forget */
-
/* Port */
u_octet2 = get_CDR_ushort(tvb,offset,stream_is_big_endian,boundary);
@@ -4847,7 +4728,6 @@ static void decode_IIOP_IOR_profile(tvbuff_t *tvb, packet_info *pinfo, proto_tre
if(tree) {
proto_tree_add_item(tree, hf_giop_objekt_key, tvb, *offset -seqlen, seqlen, ENC_NA);
}
- g_free(objkey);
}
/*
@@ -4901,11 +4781,7 @@ static void decode_IIOP_IOR_profile(tvbuff_t *tvb, packet_info *pinfo, proto_tre
proto_tree_add_text (tree, tvb, *offset -seqlen1, seqlen1,
"component_data: %s", p_chars);
-
- g_free(p_chars);
}
-
- g_free(buf);
}
}
@@ -5219,15 +5095,11 @@ static void decode_UnknownServiceContext(tvbuff_t *tvb, proto_tree *tree, int *o
/* Make a printable string */
- p_context_data = make_printable_string( context_data, context_data_len );
-
if(tree) {
+ p_context_data = make_printable_string( context_data, context_data_len );
proto_tree_add_text (tree, tvb, *offset - context_data_len , context_data_len,
"context_data: %s", p_context_data);
}
-
- g_free(context_data);
- g_free(p_context_data);
}
/*
@@ -5409,7 +5281,6 @@ static void decode_SystemExceptionReplyBody (tvbuff_t *tvb, proto_tree *tree, gi
"Exception id: %s", buf );
}
}
- g_free(buf);
minor_code_value = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
completion_status = get_CDR_ulong(tvb, offset, stream_is_big_endian, boundary);
@@ -5964,9 +5835,6 @@ static void dissect_typecode_string_param(tvbuff_t *tvb, proto_tree *tree, gint
proto_tree_add_string(tree,hf_id,tvb,*offset-u_octet4,u_octet4,buf);
}
}
-
- g_free(buf); /* dont forget */
-
}
/*
@@ -6097,8 +5965,6 @@ static void dissect_data_for_typecode(tvbuff_t *tvb, proto_tree *tree, gint *off
*offset-u_octet4,u_octet4,buf);
}
}
-
- g_free(buf); /* dont forget */
break;
case tk_sequence:
break;
@@ -6131,8 +5997,6 @@ static void dissect_data_for_typecode(tvbuff_t *tvb, proto_tree *tree, gint *off
*offset-s_octet1,s_octet1,buf);
}
}
-
- g_free(buf); /* dont forget */
break;
case tk_wstring:
u_octet4 = get_CDR_wstring(tvb,&buf,offset,stream_is_big_endian,boundary,header);
@@ -6146,8 +6010,6 @@ static void dissect_data_for_typecode(tvbuff_t *tvb, proto_tree *tree, gint *off
proto_tree_add_string(tree,hf_giop_type_string,tvb,
*offset-u_octet4,u_octet4,buf);
}
-
- g_free(buf); /* dont forget */
break;
case tk_fixed:
break;
diff --git a/epan/dissectors/packet-giop.h b/epan/dissectors/packet-giop.h
index a22b7cf72a..fa8fcc1e54 100644
--- a/epan/dissectors/packet-giop.h
+++ b/epan/dissectors/packet-giop.h
@@ -535,13 +535,12 @@ extern guint32 get_CDR_encap_info(tvbuff_t *tvb, proto_tree *tree, gint *offset,
gboolean old_stream_is_big_endian, guint32 old_boundary,
gboolean *new_stream_is_big_endian_ptr, guint32 *new_boundary_ptr );
-/* Take in an array of char and create a new string.
+/* Take in an array of char and create a new ephemeral string.
* Replace non-printable characters with periods.
*
* The array may contain \0's so dont use strdup
* The string is \0 terminated, and thus longer than
* the initial sequence.
- * Caller must free the new string.
*/
extern gchar * make_printable_string (gchar *in, guint32 len);
diff --git a/epan/dissectors/packet-parlay.c b/epan/dissectors/packet-parlay.c
index 3a03dc57bd..63bcd9bc82 100644
--- a/epan/dissectors/packet-parlay.c
+++ b/epan/dissectors/packet-parlay.c
@@ -2990,9 +2990,9 @@ static const value_string org_csapi_mmm_TpMessagingError[] = {
/* Begin Exception Helper Functions */
-/* Exception = IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
static void
-decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3001,13 +3001,13 @@ decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ID_NOT_FOUND_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ASSIGNMENT_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/ui/P_ILLEGAL_ID:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
static void
-decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3016,13 +3016,13 @@ decode_ex_org_csapi_ui_P_ILLEGAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
static void
-decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3031,13 +3031,13 @@ decode_ex_org_csapi_ui_P_ILLEGAL_RANGE(tvbuff_t *tvb _U_, packet_info *pinfo _U_
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_RANGE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_EVENT_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
static void
-decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3046,13 +3046,13 @@ decode_ex_org_csapi_ui_P_INVALID_COLLECTION_CRITERIA(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_COLLECTION_CRITERIA_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_INTERFACE_NAME_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
static void
-decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3061,13 +3061,13 @@ decode_ex_org_csapi_mm_P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_INTERFACE_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0 */
+/* Exception = IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
static void
-decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3076,13 +3076,13 @@ decode_ex_org_csapi_mm_P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED(tvbuff_t *t
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SUBSCRIBER_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0 */
+/* Exception = IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
static void
-decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3091,13 +3091,13 @@ decode_ex_org_csapi_mm_P_INVALID_REPORTING_INTERVAL(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_REPORTING_INTERVAL_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INFORMATION_NOT_AVAILABLE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
static void
-decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3106,13 +3106,13 @@ decode_ex_org_csapi_mm_P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED(tvbuff_t *tvb _U_, pa
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_CRITERIA_ExtraInformation");
}
-/* Exception = IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
static void
-decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3121,13 +3121,13 @@ decode_ex_org_csapi_termcap_P_INVALID_TERMINAL_ID(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_TERMINAL_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SESSION_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0 */
+/* Exception = IDL:org/csapi/TpCommonExceptions:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3136,13 +3136,17 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_FOLDER_ID_ExtraInformation");
+ if (tree) {
+ proto_tree_add_text(tree,tvb,*offset-4,4,"TpCommonExceptions_ExceptionType = %i",get_CDR_long(tvb,offset,stream_is_big_endian, boundary));
+ }
+
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "TpCommonExceptions_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3151,13 +3155,13 @@ decode_ex_org_csapi_gms_P_GMS_INSUFFICIENT_PRIVILEGE(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_CURRENCY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3166,13 +3170,13 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_AMOUNT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3181,13 +3185,13 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_MAILBOX_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_APPLICATION_NOT_ACTIVATED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3196,13 +3200,13 @@ decode_ex_org_csapi_gms_P_GMS_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_MESSAGE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ADDRESS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3211,13 +3215,13 @@ decode_ex_org_csapi_gms_P_GMS_LOCKING_LOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0 */
+/* Exception = IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3226,13 +3230,13 @@ decode_ex_org_csapi_gms_P_GMS_MESSAGE_NOT_REMOVED(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_VERSION:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3241,13 +3245,13 @@ decode_ex_org_csapi_gms_P_GMS_NUMBER_NOT_POSITIVE(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_VERSION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3256,13 +3260,13 @@ decode_ex_org_csapi_gms_P_GMS_UNLOCKING_UNLOCKED_MAILBOX(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_NETWORK_STATE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3271,13 +3275,13 @@ decode_ex_org_csapi_gms_P_GMS_MAILBOX_LOCKED(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_MAILBOX_LOCKED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3286,13 +3290,13 @@ decode_ex_org_csapi_gms_P_GMS_CANNOT_UNLOCK_MAILBOX(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SERVICE_ACCESS_DENIED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0 */
+/* Exception = IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3301,13 +3305,13 @@ decode_ex_org_csapi_gms_P_GMS_PROPERTY_NOT_SET(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_PROPERTY_NOT_SET_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ACCESS_DENIED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0 */
+/* Exception = IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3316,13 +3320,13 @@ decode_ex_org_csapi_gms_P_GMS_FOLDER_IS_OPEN(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_FOLDER_IS_OPEN_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SERVICE_NOT_ENABLED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0 */
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
static void
-decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3331,13 +3335,13 @@ decode_ex_org_csapi_gms_P_GMS_MAILBOX_OPEN(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_MAILBOX_OPEN_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3346,13 +3350,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VPRP_ID(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VPRP_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_AGREEMENT_TEXT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3361,13 +3365,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SLA_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_TOKEN_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3376,13 +3380,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_STATUS(tvbuff_t *tvb _U_, packet_info *pinfo _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_STATUS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SIGNATURE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3391,13 +3395,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_QOS_INFO(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_QOS_INFO_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SIGNING_ALGORITHM_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3406,13 +3410,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VALIDITY_INFO(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VALIDITY_INFO_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_DOMAIN_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3421,13 +3425,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_PIPEQOSINFO(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_PIPEQOSINFO_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_PROPERTY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3436,13 +3440,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_DSCODEPOINT(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_DSCODEPOINT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ACCESS_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
static void
-decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3451,13 +3455,13 @@ decode_ex_org_csapi_cm_P_ILLEGAL_VPRPID(tvbuff_t *tvb _U_, packet_info *pinfo _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_VPRPID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SERVICE_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0 */
+/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
static void
-decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3466,13 +3470,13 @@ decode_ex_org_csapi_cm_P_ILLEGAL_REF_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_REF_VALUE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SERVICE_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0 */
+/* Exception = IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3481,13 +3485,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_INTERFACE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MISSING_MANDATORY_PROPERTY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0 */
+/* Exception = IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
static void
-decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3496,13 +3500,13 @@ decode_ex_org_csapi_cm_P_CANT_DELETE_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_CANT_DELETE_VPRP_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_DUPLICATE_PROPERTY_NAME_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0 */
+/* Exception = IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3511,13 +3515,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATES(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_TEMPLATES_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PROPERTY_TYPE_MISMATCH_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3526,13 +3530,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_MENU(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_MENU_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_CLIENT_APP_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3541,13 +3545,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_ENTERPRISE_NETWORK(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_AUTH_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3556,13 +3560,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_TEMPLATE_TYPE(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SAG_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3571,13 +3575,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_DESCRIPTION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_PROFILE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3586,13 +3590,13 @@ decode_ex_org_csapi_cm_P_ILLEGAL_SLA_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SLA_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3601,13 +3605,13 @@ decode_ex_org_csapi_cm_P_ILLEGAL_TAG(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_TAG_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ACTIVITY_TEST_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0 */
+/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3616,13 +3620,13 @@ decode_ex_org_csapi_cm_P_ILLEGAL_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_VALUE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SERVICE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0 */
+/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3631,13 +3635,13 @@ decode_ex_org_csapi_cm_P_ILLEGAL_COMBINATION(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_COMBINATION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SERVICE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0 */
+/* Exception = IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3646,13 +3650,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITES(tvbuff_t *tvb _U_, packet_info *pinfo _U_
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITES_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3661,13 +3665,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VPRN(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VPRN_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ADDITION_TO_SAG_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
static void
-decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3676,13 +3680,13 @@ decode_ex_org_csapi_cm_P_ILLEGAL_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SITE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0 */
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3691,13 +3695,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0 */
+/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3706,13 +3710,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SAPS(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SAPS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0 */
+/* Exception = IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3721,13 +3725,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_LOCATION(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITE_LOCATION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ID_NOT_FOUND_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0 */
+/* Exception = IDL:org/csapi/ui/P_ILLEGAL_ID:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3736,13 +3740,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SITE_DESCRIPTION(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0 */
+/* Exception = IDL:org/csapi/ui/P_ILLEGAL_RANGE:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3751,13 +3755,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_IPSUBNET(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_IPSUBNET_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_RANGE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0 */
+/* Exception = IDL:org/csapi/ui/P_INVALID_COLLECTION_CRITERIA:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3766,13 +3770,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_SAP(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SAP_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_COLLECTION_CRITERIA_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0 */
+/* Exception = IDL:org/csapi/mm/P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED:1.0 */
static void
-decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3781,13 +3785,13 @@ decode_ex_org_csapi_cm_P_UNKNOWN_VPRP(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VPRP_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_REQUESTED_ACCURACY_CANNOT_BE_DELIVERED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0 */
+/* Exception = IDL:org/csapi/mm/P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED:1.0 */
static void
-decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3796,13 +3800,13 @@ decode_ex_org_csapi_am_P_UNAUTHORIZED_APPLICATION(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNAUTHORIZED_APPLICATION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_REQUESTED_RESPONSE_TIME_CANNOT_BE_DELIVERED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_USER:1.0 */
+/* Exception = IDL:org/csapi/mm/P_INVALID_REPORTING_INTERVAL:1.0 */
static void
-decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3811,13 +3815,13 @@ decode_ex_org_csapi_cs_P_INVALID_USER(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_USER_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_REPORTING_INTERVAL_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0 */
+/* Exception = IDL:org/csapi/mm/P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED:1.0 */
static void
-decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3826,13 +3830,13 @@ decode_ex_org_csapi_cs_P_INVALID_ACCOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ACCOUNT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_TRIGGER_CONDITIONS_NOT_SUBSCRIBED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0 */
+/* Exception = IDL:org/csapi/termcap/P_INVALID_TERMINAL_ID:1.0 */
static void
-decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3841,13 +3845,13 @@ decode_ex_org_csapi_cs_P_INVALID_REQUEST_NUMBER(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_REQUEST_NUMBER_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_TERMINAL_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/cs/P_INVALID_VOLUME:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_FOLDER_ID:1.0 */
static void
-decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3856,13 +3860,13 @@ decode_ex_org_csapi_cs_P_INVALID_VOLUME(tvbuff_t *tvb _U_, packet_info *pinfo _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_VOLUME_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_FOLDER_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INSUFFICIENT_PRIVILEGE:1.0 */
static void
-decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3871,13 +3875,13 @@ decode_ex_org_csapi_policy_P_ACCESS_VIOLATION(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ACCESS_VIOLATION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INSUFFICIENT_PRIVILEGE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_AUTHENTICATION_INFORMATION:1.0 */
static void
-decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3886,13 +3890,13 @@ decode_ex_org_csapi_policy_P_SYNTAX_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SYNTAX_ERROR_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MAILBOX:1.0 */
static void
-decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3901,13 +3905,13 @@ decode_ex_org_csapi_policy_P_NAME_SPACE_ERROR(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NAME_SPACE_ERROR_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_MAILBOX_ExtraInformation");
}
-/* Exception = IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_INVALID_MESSAGE_ID:1.0 */
static void
-decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3916,13 +3920,13 @@ decode_ex_org_csapi_policy_P_NO_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_TRANSACTION_IN_PROCESS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_INVALID_MESSAGE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_LOCKING_LOCKED_MAILBOX:1.0 */
static void
-decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3931,13 +3935,13 @@ decode_ex_org_csapi_policy_P_TRANSACTION_IN_PROCESS(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_TRANSACTION_IN_PROCESS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_LOCKING_LOCKED_MAILBOX_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_MESSAGE_NOT_REMOVED:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3946,13 +3950,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_MESSAGE_NOT_REMOVED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_NUMBER_NOT_POSITIVE:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3961,13 +3965,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_MEMBER(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_MEMBER_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_NUMBER_NOT_POSITIVE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_UNLOCKING_UNLOCKED_MAILBOX:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3976,13 +3980,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_IDENTITY(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_IDENTITY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_UNLOCKING_UNLOCKED_MAILBOX_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_LOCKED:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -3991,13 +3995,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_GROUP(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_GROUP_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_MAILBOX_LOCKED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_CANNOT_UNLOCK_MAILBOX:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4006,13 +4010,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_CAPABILITY(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_CAPABILITY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_CANNOT_UNLOCK_MAILBOX_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_PROPERTY_NOT_SET:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4021,13 +4025,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTES(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_PROPERTY_NOT_SET_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_FOLDER_IS_OPEN:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4036,13 +4040,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ATTRIBUTE(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_FOLDER_IS_OPEN_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0 */
+/* Exception = IDL:org/csapi/gms/P_GMS_MAILBOX_OPEN:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4051,13 +4055,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ASSIGNMENT(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_GMS_MAILBOX_OPEN_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP_ID:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4066,13 +4070,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_ALIAS(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ALIAS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VPRP_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SLA_ID:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4081,13 +4085,13 @@ decode_ex_org_csapi_pam_P_PAM_UNKNOWN_AGENT(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_AGENT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SLA_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_STATUS:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4096,13 +4100,13 @@ decode_ex_org_csapi_pam_P_PAM_UNASSIGNED_ALIAS(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNASSIGNED_ALIAS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_STATUS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_QOS_INFO:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4111,13 +4115,13 @@ decode_ex_org_csapi_pam_P_PAM_TYPE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_TYPE_EXISTS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_QOS_INFO_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VALIDITY_INFO:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4126,13 +4130,13 @@ decode_ex_org_csapi_pam_P_PAM_TYPE_ASSOCIATED(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_TYPE_ASSOCIATED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VALIDITY_INFO_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_PIPEQOSINFO:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4141,13 +4145,13 @@ decode_ex_org_csapi_pam_P_PAM_NOT_REGISTERED(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_NOT_REGISTERED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_PIPEQOSINFO_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DSCODEPOINT:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4156,13 +4160,13 @@ decode_ex_org_csapi_pam_P_PAM_NOT_MEMBER(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_NOT_MEMBER_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_DSCODEPOINT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VPRPID:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4171,13 +4175,13 @@ decode_ex_org_csapi_pam_P_PAM_NO_CAPABILITY(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_NO_CAPABILITY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_VPRPID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_REF_VALUE:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4186,13 +4190,13 @@ decode_ex_org_csapi_pam_P_PAM_MEMBER_EXISTS(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_MEMBER_EXISTS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_REF_VALUE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_INTERFACE:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4201,13 +4205,13 @@ decode_ex_org_csapi_pam_P_PAM_IS_CYCLIC(tvbuff_t *tvb _U_, packet_info *pinfo _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_IS_CYCLIC_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_INTERFACE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_CANT_DELETE_VPRP:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4216,13 +4220,13 @@ decode_ex_org_csapi_pam_P_PAM_IDENTITY_EXISTS(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_IDENTITY_EXISTS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_CANT_DELETE_VPRP_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATES:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4231,13 +4235,13 @@ decode_ex_org_csapi_pam_P_PAM_DISASSOCIATED_TYPE(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_DISASSOCIATED_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_TEMPLATES_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_MENU:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4246,13 +4250,13 @@ decode_ex_org_csapi_pam_P_PAM_ATTRIBUTE_EXISTS(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_ATTRIBUTE_EXISTS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_MENU_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_ENTERPRISE_NETWORK:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4261,13 +4265,13 @@ decode_ex_org_csapi_pam_P_PAM_ALIAS_NOT_UNIQUE(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_ENTERPRISE_NETWORK_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_TEMPLATE_TYPE:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4276,13 +4280,13 @@ decode_ex_org_csapi_pam_P_PAM_ALIAS_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_ALIAS_EXISTS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_TEMPLATE_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_DESCRIPTION:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4291,13 +4295,13 @@ decode_ex_org_csapi_pam_P_PAM_AGENT_EXISTS(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_AGENT_EXISTS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_DESCRIPTION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SLA_ID:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4306,13 +4310,13 @@ decode_ex_org_csapi_pam_P_PAM_UNAVAILABLE_INTERFACE(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SLA_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_TAG:1.0 */
static void
-decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4321,13 +4325,13 @@ decode_ex_org_csapi_pam_P_PAM_INVALID_CREDENTIAL(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_INVALID_CREDENTIAL_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_TAG_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_VALUE:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4336,13 +4340,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_AUTHENTICATION_INFORMATION(tvbuff_t *tvb _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_VALUE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_COMBINATION:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4351,13 +4355,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_MAILBOX(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_MAILBOX_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_COMBINATION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITES:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4366,13 +4370,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TYPE(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITES_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRN:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4381,13 +4385,13 @@ decode_ex_org_csapi_mmm_P_MMM_MAX_MESSAGE_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VPRN_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0 */
+/* Exception = IDL:org/csapi/cm/P_ILLEGAL_SITE_ID:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4396,13 +4400,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_FOLDER_ID(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_FOLDER_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SITE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_ID:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4411,13 +4415,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_MESSAGE_ID(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_MESSAGE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAPS:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4426,13 +4430,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_PART_ID(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_PART_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SAPS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_LOCATION:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4441,13 +4445,13 @@ decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH(tvbuff_t *tvb
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITE_LOCATION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SITE_DESCRIPTION:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4456,13 +4460,13 @@ decode_ex_org_csapi_mmm_P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH(tvbuff_t *tvb
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SITE_DESCRIPTION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_IPSUBNET:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4471,13 +4475,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_PROPERTY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_IPSUBNET_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_SAP:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4486,13 +4490,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_DELIVERY_TIME(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_DELIVERY_TIME_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SAP_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0 */
+/* Exception = IDL:org/csapi/cm/P_UNKNOWN_VPRP:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4501,13 +4505,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_VALIDITY_TIME(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_VALIDITY_TIME_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_VPRP_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0 */
+/* Exception = IDL:org/csapi/am/P_UNAUTHORIZED_APPLICATION:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4516,13 +4520,13 @@ decode_ex_org_csapi_mmm_P_MMM_MAX_SUBJECT_SIZE_EXCEEDED(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNAUTHORIZED_APPLICATION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_USER:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4531,13 +4535,13 @@ decode_ex_org_csapi_mmm_P_MMM_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packe
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_USER_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_ACCOUNT:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4546,13 +4550,13 @@ decode_ex_org_csapi_mmm_P_MMM_CANNOT_CANCEL(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_CANNOT_CANCEL_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ACCOUNT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_REQUEST_NUMBER:1.0 */
static void
-decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -4561,13 +4565,13 @@ decode_ex_org_csapi_mmm_P_MMM_INVALID_HEADER(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_HEADER_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_REQUEST_NUMBER_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
+/* Exception = IDL:org/csapi/cs/P_INVALID_VOLUME:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4576,13 +4580,13 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_VOLUME_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
+/* Exception = IDL:org/csapi/policy/P_ACCESS_VIOLATION:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4591,13 +4595,13 @@ decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SERVICE_ACCESS_DENIED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ACCESS_VIOLATION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
+/* Exception = IDL:org/csapi/policy/P_SYNTAX_ERROR:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4606,13 +4610,13 @@ decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvbuff_t *tvb _U_, packet_info *pinfo _U_
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ACCESS_DENIED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SYNTAX_ERROR_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
+/* Exception = IDL:org/csapi/policy/P_NAME_SPACE_ERROR:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4621,13 +4625,13 @@ decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SERVICE_NOT_ENABLED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NAME_SPACE_ERROR_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
+/* Exception = IDL:org/csapi/policy/P_NO_TRANSACTION_IN_PROCESS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4636,13 +4640,13 @@ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvbuff_t *tvb _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_TRANSACTION_IN_PROCESS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
+/* Exception = IDL:org/csapi/policy/P_TRANSACTION_IN_PROCESS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4651,13 +4655,13 @@ decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_AGREEMENT_TEXT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_TRANSACTION_IN_PROCESS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_TYPE:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4666,13 +4670,13 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_TOKEN_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_MEMBER:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4681,13 +4685,13 @@ decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SIGNATURE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_MEMBER_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_IDENTITY:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4696,13 +4700,13 @@ decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SIGNING_ALGORITHM_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_IDENTITY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_GROUP:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4711,13 +4715,13 @@ decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_DOMAIN_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_GROUP_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_CAPABILITY:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4726,13 +4730,13 @@ decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_PROPERTY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_CAPABILITY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTES:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4741,13 +4745,13 @@ decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ACCESS_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ATTRIBUTES_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ATTRIBUTE:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4756,13 +4760,13 @@ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SERVICE_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ATTRIBUTE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ASSIGNMENT:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4771,13 +4775,13 @@ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvbuff_t *tvb _U_, packet_info *pi
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SERVICE_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ASSIGNMENT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_ALIAS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4786,13 +4790,13 @@ decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MISSING_MANDATORY_PROPERTY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_ALIAS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNKNOWN_AGENT:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4801,13 +4805,13 @@ decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_DUPLICATE_PROPERTY_NAME_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNKNOWN_AGENT_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNASSIGNED_ALIAS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4816,13 +4820,13 @@ decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PROPERTY_TYPE_MISMATCH_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNASSIGNED_ALIAS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_EXISTS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4831,13 +4835,13 @@ decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_CLIENT_APP_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_TYPE_EXISTS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_TYPE_ASSOCIATED:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4846,13 +4850,13 @@ decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_AUTH_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_TYPE_ASSOCIATED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_NOT_REGISTERED:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4861,13 +4865,13 @@ decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SAG_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_NOT_REGISTERED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_NOT_MEMBER:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4876,13 +4880,13 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvbuff_t *tvb _U_, packet_in
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_PROFILE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_NOT_MEMBER_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_NO_CAPABILITY:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4891,13 +4895,13 @@ decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvbuff_t *tvb _U_, packet_i
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SERVICE_CONTRACT_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_NO_CAPABILITY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_MEMBER_EXISTS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4906,13 +4910,13 @@ decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ACTIVITY_TEST_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_MEMBER_EXISTS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_IS_CYCLIC:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4921,13 +4925,13 @@ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_ILLEGAL_SERVICE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_IS_CYCLIC_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_IDENTITY_EXISTS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4936,13 +4940,13 @@ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SERVICE_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_IDENTITY_EXISTS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_DISASSOCIATED_TYPE:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4951,13 +4955,13 @@ decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_SERVICE_TYPE_UNAVAILABLE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_DISASSOCIATED_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_ATTRIBUTE_EXISTS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4966,13 +4970,13 @@ decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvbuff_t *tvb _U_, packet_info
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ADDITION_TO_SAG_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_ATTRIBUTE_EXISTS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_NOT_UNIQUE:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4981,13 +4985,13 @@ decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvbuff_t *tvb
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_ALIAS_NOT_UNIQUE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_ALIAS_EXISTS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -4996,13 +5000,13 @@ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvbuff_t *tvb _U
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_ALIAS_EXISTS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_AGENT_EXISTS:1.0 */
static void
-decode_ex_org_csapi_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_)
+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_)
{
@@ -5011,13 +5015,13 @@ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvbuff_t *tvb _U_, pack
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_NO_ACCEPTABLE_SIGNING_ALGORITHM_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_AGENT_EXISTS_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_UNAVAILABLE_INTERFACE:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5026,13 +5030,13 @@ decode_ex_org_csapi_P_INVALID_AMOUNT(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_AMOUNT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_UNAVAILABLE_INTERFACE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
+/* Exception = IDL:org/csapi/pam/P_PAM_INVALID_CREDENTIAL:1.0 */
static void
-decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5041,13 +5045,13 @@ decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_APPLICATION_NOT_ACTIVATED_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_PAM_INVALID_CREDENTIAL_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_AUTHENTICATION_INFORMATION:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5056,13 +5060,13 @@ decode_ex_org_csapi_P_INVALID_ADDRESS(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ADDRESS_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_AUTHENTICATION_INFORMATION_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MAILBOX:1.0 */
static void
-decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5071,13 +5075,13 @@ decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvbuff_t *tvb _U_, packet_info *p
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNSUPPORTED_ADDRESS_PLAN_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_MAILBOX_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TYPE:1.0 */
static void
-decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5086,13 +5090,13 @@ decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNAUTHORISED_PARAMETER_VALUE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_DELIVERY_TYPE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_VERSION:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_MESSAGE_SIZE_EXCEEDED:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5101,13 +5105,13 @@ decode_ex_org_csapi_P_INVALID_VERSION(tvbuff_t *tvb _U_, packet_info *pinfo _U_,
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_VERSION_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_MAX_MESSAGE_SIZE_EXCEEDED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_FOLDER_ID:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5116,13 +5120,13 @@ decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_NETWORK_STATE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_FOLDER_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_MESSAGE_ID:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5131,13 +5135,13 @@ decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvbuff_t *tvb _U_, packet_info *pinf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_ASSIGNMENT_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_MESSAGE_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PART_ID:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5146,13 +5150,13 @@ decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvbuff_t *tvb _U_, packet_inf
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_TIME_AND_DATE_FORMAT_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_PART_ID_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5161,13 +5165,13 @@ decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_EVENT_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_DELIVERY_TYPE_ADDRESS_TYPE_MISMATCH_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5176,13 +5180,13 @@ decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_INTERFACE_NAME_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_DELIVERY_TYPE_MESSAGE_TYPE_MISMATCH_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_PROPERTY:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5191,13 +5195,13 @@ decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvbuff_t *tvb _U_, packet_info *pin
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_INTERFACE_TYPE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_PROPERTY_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_DELIVERY_TIME:1.0 */
static void
-decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5206,13 +5210,13 @@ decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_UNKNOWN_SUBSCRIBER_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_DELIVERY_TIME_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_VALIDITY_TIME:1.0 */
static void
-decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5221,13 +5225,13 @@ decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvbuff_t *tvb _U_, packet_info *
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INFORMATION_NOT_AVAILABLE_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_VALIDITY_TIME_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_MAX_SUBJECT_SIZE_EXCEEDED:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5236,13 +5240,13 @@ decode_ex_org_csapi_P_INVALID_CRITERIA(tvbuff_t *tvb _U_, packet_info *pinfo _U_
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_CRITERIA_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_MAX_SUBJECT_SIZE_EXCEEDED_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INFORMATION_NOT_AVAILABLE:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5251,13 +5255,13 @@ decode_ex_org_csapi_P_INVALID_SESSION_ID(tvbuff_t *tvb _U_, packet_info *pinfo _
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_SESSION_ID_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INFORMATION_NOT_AVAILABLE_ExtraInformation");
}
-/* Exception = IDL:org/csapi/TpCommonExceptions:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_CANNOT_CANCEL:1.0 */
static void
-decode_ex_org_csapi_TpCommonExceptions(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5266,17 +5270,13 @@ decode_ex_org_csapi_TpCommonExceptions(tvbuff_t *tvb _U_, packet_info *pinfo _U_
/* Operation specific Variable declarations End */
- if (tree) {
- proto_tree_add_text(tree,tvb,*offset-4,4,"TpCommonExceptions_ExceptionType = %i",get_CDR_long(tvb,offset,stream_is_big_endian, boundary));
- }
-
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "TpCommonExceptions_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_CANNOT_CANCEL_ExtraInformation");
}
-/* Exception = IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
+/* Exception = IDL:org/csapi/mmm/P_MMM_INVALID_HEADER:1.0 */
static void
-decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *tree _U_, int *offset _U_, MessageHeader *header _U_, gchar *operation _U_, gboolean stream_is_big_endian _U_)
+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_)
{
@@ -5285,7 +5285,7 @@ decode_ex_org_csapi_P_INVALID_CURRENCY(tvbuff_t *tvb _U_, packet_info *pinfo _U_
/* Operation specific Variable declarations End */
- giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_INVALID_CURRENCY_ExtraInformation");
+ giop_add_CDR_string(tree, tvb, offset, stream_is_big_endian, boundary, "P_MMM_INVALID_HEADER_ExtraInformation");
}
@@ -5306,6 +5306,294 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr
if (!header->exception_id)
return FALSE;
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_CRITERIA:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_CRITERIA(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_SESSION_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_SESSION_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/TpCommonExceptions:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_TpCommonExceptions(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/TpCommonExceptions:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_CURRENCY:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_CURRENCY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_AMOUNT:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_AMOUNT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_ADDRESS:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_ADDRESS(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_VERSION:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_VERSION(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_VERSION:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_ACCESS_DENIED:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
+ return TRUE;
+ }
+
+ if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0") == 0) {
+ tree = start_dissecting(tvb, pinfo, ptree, offset);
+ decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
+ return TRUE;
+ }
+
if (strcmp(header->exception_id, "IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0") == 0) {
tree = start_dissecting(tvb, pinfo, ptree, offset);
decode_ex_org_csapi_ui_P_ID_NOT_FOUND(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/ui/P_ID_NOT_FOUND:1.0 */
@@ -5936,294 +6224,6 @@ decode_user_exception(tvbuff_t *tvb _U_, packet_info *pinfo _U_, proto_tree *ptr
return TRUE;
}
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_SERVICE_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_SERVICE_ACCESS_DENIED:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_ACCESS_DENIED:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_ACCESS_DENIED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_ACCESS_DENIED:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_SERVICE_NOT_ENABLED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_SERVICE_NOT_ENABLED:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_ENCRYPTION_CAPABILITY:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_AGREEMENT_TEXT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_AGREEMENT_TEXT:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_TOKEN(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_TOKEN:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SIGNATURE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SIGNATURE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SIGNING_ALGORITHM:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_DOMAIN_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_DOMAIN_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_PROPERTY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_PROPERTY:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_ACCESS_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_ACCESS_TYPE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_TYPE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_TYPE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_MISSING_MANDATORY_PROPERTY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_MISSING_MANDATORY_PROPERTY:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_DUPLICATE_PROPERTY_NAME(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_DUPLICATE_PROPERTY_NAME:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_PROPERTY_TYPE_MISMATCH(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_PROPERTY_TYPE_MISMATCH:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_CLIENT_APP_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_CLIENT_APP_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_AUTH_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_AUTH_TYPE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SAG_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SAG_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_PROFILE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_PROFILE_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SERVICE_CONTRACT_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SERVICE_CONTRACT_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_ACTIVITY_TEST_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_ACTIVITY_TEST_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_ILLEGAL_SERVICE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_ILLEGAL_SERVICE_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_UNKNOWN_SERVICE_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_UNKNOWN_SERVICE_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_SERVICE_TYPE_UNAVAILABLE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_SERVICE_TYPE_UNAVAILABLE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_ADDITION_TO_SAG(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_ADDITION_TO_SAG:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_INVALID_SAG_TO_SERVICE_PROFILE_ASSIGNMENT:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_AUTHENTICATION_MECHANISM:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_fw_P_NO_ACCEPTABLE_SIGNING_ALGORITHM(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/fw/P_NO_ACCEPTABLE_SIGNING_ALGORITHM:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_AMOUNT:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_AMOUNT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_AMOUNT:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_APPLICATION_NOT_ACTIVATED(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_APPLICATION_NOT_ACTIVATED:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_ADDRESS:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_ADDRESS(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_ADDRESS:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_UNSUPPORTED_ADDRESS_PLAN(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_UNSUPPORTED_ADDRESS_PLAN:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_UNAUTHORISED_PARAMETER_VALUE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_UNAUTHORISED_PARAMETER_VALUE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_VERSION:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_VERSION(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_VERSION:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_NETWORK_STATE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_NETWORK_STATE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_ASSIGNMENT_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_ASSIGNMENT_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_TIME_AND_DATE_FORMAT(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_TIME_AND_DATE_FORMAT:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_EVENT_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_EVENT_TYPE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_INTERFACE_NAME(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_INTERFACE_NAME:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_INTERFACE_TYPE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_INTERFACE_TYPE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_UNKNOWN_SUBSCRIBER(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_UNKNOWN_SUBSCRIBER:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INFORMATION_NOT_AVAILABLE(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INFORMATION_NOT_AVAILABLE:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_CRITERIA:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_CRITERIA(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_CRITERIA:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_SESSION_ID:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_SESSION_ID(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_SESSION_ID:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/TpCommonExceptions:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_TpCommonExceptions(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/TpCommonExceptions:1.0 */
- return TRUE;
- }
-
- if (strcmp(header->exception_id, "IDL:org/csapi/P_INVALID_CURRENCY:1.0") == 0) {
- tree = start_dissecting(tvb, pinfo, ptree, offset);
- decode_ex_org_csapi_P_INVALID_CURRENCY(tvb, pinfo, tree, offset, header, operation, stream_is_big_endian); /* IDL:org/csapi/P_INVALID_CURRENCY:1.0 */
- return TRUE;
- }
-
return FALSE; /* user exception not found */
@@ -88914,8 +88914,6 @@ decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo
}
- g_free(seq); /* free buffer */
- seq = NULL;
return; /* End Compare for this discriminant type */
}
@@ -88935,8 +88933,6 @@ decode_org_csapi_TpSimpleAttributeValue_un(tvbuff_t *tvb _U_, packet_info *pinfo
u_octet4, (u_octet4 > 0) ? seq : "");
}
- g_free(seq); /* free buffer */
- seq = NULL;
return; /* End Compare for this discriminant type */
}
diff --git a/tools/wireshark_gen.py b/tools/wireshark_gen.py
index 48c28a704a..ad377cf02a 100755
--- a/tools/wireshark_gen.py
+++ b/tools/wireshark_gen.py
@@ -1846,9 +1846,6 @@ get_CDR_fixed(tvb, &seq, offset, @digits@, @scale@);
if (tree) {
proto_tree_add_text(tree,tvb,*offset-@length@, @length@, "@varname@ < @digits@, @scale@> = %s",seq);
}
-
-g_free(seq); /* free buffer */
-seq = NULL;
"""
template_get_CDR_enum_symbolic = """\
@@ -1867,8 +1864,6 @@ if (tree) {
u_octet4, (u_octet4 > 0) ? seq : \"\");
}
-g_free(seq); /* free buffer */
-seq = NULL;
"""
template_get_CDR_wchar = """\
s_octet1 = get_CDR_wchar(tvb, &seq, offset, header);
@@ -1884,8 +1879,6 @@ if (tree) {
}
-g_free(seq); /* free buffer */
-seq = NULL;
"""
template_get_CDR_TypeCode = """\
u_octet4 = get_CDR_typeCode(tvb, tree, offset, stream_is_big_endian, boundary, header);
@@ -1917,8 +1910,6 @@ if (u_octet4_loop_@seqname@ > 0 && tree) {
u_octet4_loop_@seqname@);
proto_tree_add_text(tree, tvb, *offset - u_octet4_loop_@seqname@,
u_octet4_loop_@seqname@, \"@seqname@: %s\", text_seq_@seqname@);
- g_free(binary_seq_@seqname@);
- g_free(text_seq_@seqname@);
}
"""
template_get_CDR_array_start = """\