From Victor Stratan:

GSM SMS fixes:

 - Made Timezone view human readable based on 3GPP TS 23.040 V6.5.0 (9.2.3.11).

 - TP-UDHI field - located within bit no 6 one more place was left over from
   previous patch by Viorel Suman made on 9 Dec 2004.


svn path=/trunk/; revision=12718
This commit is contained in:
Olivier Biot 2004-12-11 23:47:12 +00:00
parent fb77ff6d54
commit 718c4f1ef2
2 changed files with 12 additions and 4 deletions

View File

@ -2240,6 +2240,10 @@ Susanne Edlund <Susanne.Edlund [AT] ericsson.com> {
NSIP protocol support
}
Victor Stratan <hidralisk [AT] yahoo.com> {
GSM SMS enhancements
}
And assorted fixes and enhancements by the people listed above
and by:

View File

@ -730,6 +730,7 @@ static void
dis_field_scts_aux(tvbuff_t *tvb, proto_tree *tree, guint32 offset)
{
guint8 oct, oct2, oct3;
char sign;
oct = tvb_get_guint8(tvb, offset);
@ -766,10 +767,13 @@ dis_field_scts_aux(tvbuff_t *tvb, proto_tree *tree, guint32 offset)
oct = tvb_get_guint8(tvb, offset);
sign = (oct & 0x08)?'-':'+';
oct = ((oct >> 4) + (oct & 0x07) * 10) * 15;
proto_tree_add_text(tree,
tvb, offset, 1,
"Timezone %d",
oct);
"Timezone: GMT %c %d hours %d minutes",
sign, oct / 60, oct % 60);
}
/* 9.2.3.11 */
@ -2415,9 +2419,9 @@ dis_msg_command(tvbuff_t *tvb, proto_tree *tree, guint32 offset)
oct = tvb_get_guint8(tvb, offset);
DIS_FIELD_SRR(tree, 0x20, offset);
DIS_FIELD_UDHI(tree, 0x40, offset, udhi);
DIS_FIELD_UDHI(tree, 0x04, offset, udhi);
DIS_FIELD_SRR(tree, 0x20, offset);
DIS_FIELD_MTI(tree, 0x03, offset);