diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-08-23 07:23:21 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-08-23 07:23:21 +0000 |
commit | f4902f4ade18890af746bcb9808dd2c540f5db23 (patch) | |
tree | b1e4138b8b1a4bcc92a494826447b6299fe4aa32 /packet-h225.c | |
parent | 555652a37f17cccc4caa779470fcabeb286a750d (diff) | |
download | wireshark-f4902f4ade18890af746bcb9808dd2c540f5db23.tar.gz wireshark-f4902f4ade18890af746bcb9808dd2c540f5db23.tar.bz2 wireshark-f4902f4ade18890af746bcb9808dd2c540f5db23.zip |
From Tomas Kukosa: export the PER dissection routines, and some
H.225/H.245 routines, to plugins on platforms where they have to go
through the function call table.
svn path=/trunk/; revision=8216
Diffstat (limited to 'packet-h225.c')
-rw-r--r-- | packet-h225.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-h225.c b/packet-h225.c index a9cf974ddd..1af00bb8e2 100644 --- a/packet-h225.c +++ b/packet-h225.c @@ -2,7 +2,7 @@ * Routines for H.225 packet dissection * 2003 Ronnie Sahlberg * - * $Id: packet-h225.c,v 1.6 2003/08/21 18:00:21 guy Exp $ + * $Id: packet-h225.c,v 1.7 2003/08/23 07:23:13 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -2564,7 +2564,7 @@ dissect_h225_replyAddress(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_t offset=dissect_per_choice(tvb, offset, pinfo, tree, hf_h225_replyAddress, ett_h225_TransportAddress, TransportAddress_choice, "replyAddress", NULL); return offset; } -static int +int dissect_h225_TransportAddress(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tree) { offset=dissect_per_choice(tvb, offset, pinfo, tree, hf_h225_TransportAddress, ett_h225_TransportAddress, TransportAddress_choice, "TransportAddress", NULL); |