From Flavio Poletti: fix bug in decoding of maximum uplink and downlink

rate in GTP v1 (they were swapped).

svn path=/trunk/; revision=6070
This commit is contained in:
Guy Harris 2002-08-23 20:03:15 +00:00
parent 34180e1bf2
commit 9ff9891c02
3 changed files with 10 additions and 3 deletions

View File

@ -755,6 +755,7 @@ Andy Hood <ahood[AT]westpac.com.au> {
On Solaris, with GCC, add flags to reduce warnings from
inadequacies of function declarations in X11 headers
Translate enterprise OIDs in SNMP traps to strings if possible
AODV6 dissector compile fixes for AIX
}
Randy McEoin <rmceoin[AT]pe.net> {
@ -1379,6 +1380,11 @@ Brian Bruns <camber[AT]ais.org> {
TDS
}
Flavio Poletti <Flavio.Poletti[AT]tei.ericsson.se> {
Fix bug in decoding of maximum uplink and downlink rate in GTP
v1
}
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to
give his permission to use his version of snprintf.c.

View File

@ -1470,6 +1470,7 @@ B<http://www.ethereal.com>.
Vassilii Khachaturov <Vassilii.Khachaturov[AT]comverse.com>
Bill Studenmund <wrstuden[AT]wasabisystems.com>
Brian Bruns <camber[AT]ais.org>
Flavio Poletti <Flavio.Poletti[AT]tei.ericsson.se>
Alain Magloire <alainm[AT]rcsm.ece.mcgill.ca> was kind enough to give his
permission to use his version of snprintf.c.

View File

@ -4,7 +4,7 @@
* Copyright 2001, Michal Melerowicz <michal.melerowicz@nokia.com>
* Nicolas Balkota <balkota@mac.com>
*
* $Id: packet-gtp.c,v 1.32 2002/08/02 23:35:50 jmayer Exp $
* $Id: packet-gtp.c,v 1.33 2002/08/23 20:03:12 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -3396,8 +3396,8 @@ decode_qos_umts(tvbuff_t *tvb, int offset, proto_tree *tree, gchar* qos_str, gui
del_order = tvb_get_guint8(tvb, offset+4) & 0x18;
del_err_sdu = tvb_get_guint8(tvb, offset+4) & 0x07;
max_sdu_size = tvb_get_guint8(tvb, offset+5);
max_dl = tvb_get_guint8(tvb, offset+6);
max_ul = tvb_get_guint8(tvb, offset+7);
max_ul = tvb_get_guint8(tvb, offset+6);
max_dl = tvb_get_guint8(tvb, offset+7);
res_ber = tvb_get_guint8(tvb, offset+8) & 0xF0;
sdu_err_ratio = tvb_get_guint8(tvb, offset+8) & 0x0F;
trans_delay = tvb_get_guint8(tvb, offset+9) & 0xFC;