aboutsummaryrefslogtreecommitdiffstats
path: root/packet-h245.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-07-09 11:07:57 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2003-07-09 11:07:57 +0000
commit946b5baffad12173e14ba83cd680d7cf13ee3f17 (patch)
treebde8f65dceca0159d6e5aa430e0971fe6b815375 /packet-h245.c
parentd8643b8a135264510b2596a8010ac2f754ff6347 (diff)
remove one more NOT_DECODED_YET for the subAddress IA5String
svn path=/trunk/; revision=8010
Diffstat (limited to 'packet-h245.c')
-rw-r--r--packet-h245.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/packet-h245.c b/packet-h245.c
index 20cf67951c..83215fc70a 100644
--- a/packet-h245.c
+++ b/packet-h245.c
@@ -95,7 +95,7 @@ proper helper routines
* with great support with testing and providing capturefiles
* from Martin Regner
*
- * $Id: packet-h245.c,v 1.14 2003/07/09 11:02:50 sahlberg Exp $
+ * $Id: packet-h245.c,v 1.15 2003/07/09 11:07:57 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -134,6 +134,7 @@ static dissector_handle_t MultimediaSystemControlMessage_handle;
static int proto_h245 = -1;
static int hf_h245_pdu_type = -1;
+static int hf_h245_subAddress = -1;
static int hf_h245_domainBased = -1;
static int hf_h245_GeneralString_length = -1;
static int hf_h245_extension_bit = -1;
@@ -20036,7 +20037,8 @@ NOT_DECODED_YET("DialingInformationNumber_networkAddress");
static int
dissect_h245_DialingInformationNumber_subAddress(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
{
-NOT_DECODED_YET("DialingInformationNumber_subAddress");
+ offset=dissect_per_constrained_IA5String(tvb, offset, pinfo, tree, hf_h245_subAddress, 0, 40);
+
return offset;
}
@@ -22917,7 +22919,9 @@ proto_register_h245(void)
{ &hf_h245_domainBased,
{ "domainBased", "h245.domainBased", FT_STRING, FT_NONE,
NULL, 0, "String for domainBased", HFILL }},
-
+ { &hf_h245_subAddress,
+ { "subAddress", "h245.subAddress", FT_STRING, FT_NONE,
+ NULL, 0, "String for subAddress", HFILL }},
};
static gint *ett[] =