aboutsummaryrefslogtreecommitdiffstats
path: root/packet-q2931.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-24 08:08:43 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-05-24 08:08:43 +0000
commita775aed01fe057affab555c76403fa20213187cb (patch)
tree8f460a25aaaf0a83491ab7332c57609119b7d287 /packet-q2931.c
parent4d5ce03a27c14ff8fd0fda62c42dc22dbd0d16e4 (diff)
Add the UNI 3.0 mode identifier AAL parameter.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@5542 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-q2931.c')
-rw-r--r--packet-q2931.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/packet-q2931.c b/packet-q2931.c
index 19a868f737..f6fcfecbd8 100644
--- a/packet-q2931.c
+++ b/packet-q2931.c
@@ -2,7 +2,7 @@
* Routines for Q.2931 frame disassembly
* Guy Harris <guy@alum.mit.edu>
*
- * $Id: packet-q2931.c,v 1.24 2002/05/01 08:40:22 guy Exp $
+ * $Id: packet-q2931.c,v 1.25 2002/05/24 08:08:43 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -329,6 +329,12 @@ static const value_string q2931_aal1_err_correction_method_vals[] = {
{ 0x00, NULL }
};
+static const value_string q2931_aal_mode_vals[] = {
+ { 0x00, "Streaming" },
+ { 0x01, "Message" },
+ { 0x00, NULL }
+};
+
static const value_string q2931_sscs_type_vals[] = {
{ 0x00, "Null" },
{ 0x01, "Data SSCS based on SSCOP (assured operation)" },
@@ -482,6 +488,18 @@ dissect_q2931_aal_parameters_ie(tvbuff_t *tvb, int offset, int len,
len -= 5;
break;
+ case 0x83: /* Mode identifier for AAL3/4 and AAL5 */
+ if (len < 2)
+ return;
+ value = tvb_get_guint8(tvb, offset + 1);
+ proto_tree_add_text(tree, tvb, offset, 2,
+ "Mode: %s",
+ val_to_str(value, q2931_aal_mode_vals,
+ "Unknown (0x%02X)"));
+ offset += 2;
+ len -= 2;
+ break;
+
case 0x84: /* SSCS type identifier for AAL3/4 and AAL5 */
if (len < 2)
return;