summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packet-h245.c6
-rw-r--r--packet-h245.h6
2 files changed, 8 insertions, 4 deletions
diff --git a/packet-h245.c b/packet-h245.c
index 31b6ec4bda..2d2c4941ae 100644
--- a/packet-h245.c
+++ b/packet-h245.c
@@ -48,7 +48,7 @@ All in all a lot of work.
* with great support with testing and providing capturefiles
* from Martin Regner
*
- * $Id: packet-h245.c,v 1.23 2003/07/16 19:05:37 sahlberg Exp $
+ * $Id: packet-h245.c,v 1.24 2003/07/19 10:25:44 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -10182,7 +10182,7 @@ static per_sequence_t T38FaxProfile_sequence[] = {
dissect_h245_T38FaxTcpOptions },
{ NULL, 0, 0, NULL }
};
-static int
+int
dissect_h245_T38FaxProfile(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
{
offset=dissect_per_sequence(tvb, offset, pinfo, tree, hf_h245_T38FaxProfile, ett_h245_T38FaxProfile, T38FaxProfile_sequence);
@@ -13170,7 +13170,7 @@ static per_choice_t DataProtocolCapability_choice[] = {
dissect_h245_NULL },
{ 0, NULL, 0, NULL }
};
-static int
+int
dissect_h245_DataProtocolCapability(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree)
{
offset=dissect_per_choice(tvb, offset, pinfo, tree, hf_h245_DataProtocolCapability, ett_h245_DataProtocolCapability, DataProtocolCapability_choice, "DataProtocolCapability", NULL);
diff --git a/packet-h245.h b/packet-h245.h
index f99bab5625..850b0da549 100644
--- a/packet-h245.h
+++ b/packet-h245.h
@@ -2,7 +2,7 @@
* Routines for H.245 packet dissection
* 2003 Ronnie Sahlberg
*
- * $Id: packet-h245.h,v 1.2 2003/07/16 19:05:37 sahlberg Exp $
+ * $Id: packet-h245.h,v 1.3 2003/07/19 10:25:45 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -30,3 +30,7 @@ extern int dissect_h245_OpenLogicalChannel(tvbuff_t *tvb, int offset, packet_inf
extern int dissect_h245_h221NonStandard(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree);
extern int dissect_h245_NonStandardParameter(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree);
+
+extern int dissect_h245_T38FaxProfile(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree);
+
+extern int dissect_h245_DataProtocolCapability(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree);