summaryrefslogtreecommitdiff
path: root/asn1
diff options
context:
space:
mode:
authorLars Roland <Lars.Roland@gmx.net>2005-01-10 02:19:11 +0000
committerLars Roland <Lars.Roland@gmx.net>2005-01-10 02:19:11 +0000
commit2f5e81ccccc8abdefbdee7ec5c03467106d72412 (patch)
treec07ca7ad5c8f2de78dc40c18109766ffb00ce5ee /asn1
parent7b49d981aeea6e2ffee0c90f5454ffd19ef9d91f (diff)
downloadwireshark-2f5e81ccccc8abdefbdee7ec5c03467106d72412.tar.gz
From Luis Ontanon:
Add another piece of code that got lost to the cnf file of the new h225 dissector. svn path=/trunk/; revision=13000
Diffstat (limited to 'asn1')
-rw-r--r--asn1/h225/h225.cnf9
1 files changed, 9 insertions, 0 deletions
diff --git a/asn1/h225/h225.cnf b/asn1/h225/h225.cnf
index 28a0b27289..40d09fb958 100644
--- a/asn1/h225/h225.cnf
+++ b/asn1/h225/h225.cnf
@@ -126,6 +126,8 @@ ReleaseCompleteReason/securityError rLC_securityError
GatekeeperRejectReason/securityError gkRej_securityError
RegistrationRejectReason/securityError reg_securityError
+CallIdentifier/guid guid
+
#----------------------------------------------------------------------------------------
#.FN_BODY H323-UU-PDU/h323-message-body
guint32 message_body_val;
@@ -376,6 +378,13 @@ guint32 value_len;
h225_pi.reason = value;
#.END
#----------------------------------------------------------------------------------------
+#.FN_BODY CallIdentifier/guid
+ guint32 guid_offset,guid_len;
+
+ offset = dissect_per_octet_string(tvb,offset,pinfo,tree,hf_index,16,16,&guid_offset,&guid_len);
+ tvb_memcpy(tvb,h225_pi.guid,guid_offset,guid_len);
+#.END
+#----------------------------------------------------------------------------------------
#.FN_BODY RequestSeqNum
offset = dissect_per_constrained_integer(tvb, offset, pinfo, tree, hf_index,
1U, 65535U, &(h225_pi.requestSeqNum), NULL, FALSE);