diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-02-28 23:16:15 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-02-28 23:16:15 +0000 |
commit | 16db97a28cec8a3fab9e35589d2f34f4e5488ac7 (patch) | |
tree | c69d8ed22734a979e1c4300f5167ee64e998fc1b /packet-q931.h | |
parent | 4f4c44407fd165e1d77a36ce5f3f0c9332983b81 (diff) | |
download | wireshark-16db97a28cec8a3fab9e35589d2f34f4e5488ac7.tar.gz wireshark-16db97a28cec8a3fab9e35589d2f34f4e5488ac7.tar.bz2 wireshark-16db97a28cec8a3fab9e35589d2f34f4e5488ac7.zip |
"packet-isup.c" doesn't appear to need to include "packet-ip.h", so
don't do so.
Pick up Anders Broman's table of Q.850 cause values, and his change to
use "dissect_q931_cause_ie()" for cause indicators - but do it by
modifying the Q.931 dissector's "dissect_q931_cause_ie()" to take, as an
argument, the header field to use for the cause value, and export that
routine and have the ISUP dissector call it, rather than by duplicating
the cause IE dissector.
svn path=/trunk/; revision=7225
Diffstat (limited to 'packet-q931.h')
-rw-r--r-- | packet-q931.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/packet-q931.h b/packet-q931.h index 8ce1a9643e..115bee693d 100644 --- a/packet-q931.h +++ b/packet-q931.h @@ -3,7 +3,7 @@ * disassembly * Guy Harris <guy@alum.mit.edu> * - * $Id: packet-q931.h,v 1.7 2002/08/28 21:00:26 jmayer Exp $ + * $Id: packet-q931.h,v 1.8 2003/02/28 23:16:15 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -30,12 +30,15 @@ extern void dissect_q931_bearer_capability_ie(tvbuff_t *, int, int, proto_tree *); -extern void dissect_q931_high_layer_compat_ie(tvbuff_t *, int, int, - proto_tree *); +extern void dissect_q931_cause_ie(tvbuff_t *, int, int, + proto_tree *, int); extern void dissect_q931_progress_indicator_ie(tvbuff_t *, int, int, proto_tree *); +extern void dissect_q931_high_layer_compat_ie(tvbuff_t *, int, int, + proto_tree *); + extern const value_string q931_cause_location_vals[]; extern const value_string q931_cause_code_vals[]; |