aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lapb.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2007-12-16 14:21:37 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2007-12-16 14:21:37 +0000
commitfa34d4685193d15f856182c73e097702be1453e3 (patch)
treed74c802d7aa125ab811a5e94734c6a25ebb1f456 /epan/dissectors/packet-lapb.c
parent53f5c9aaf5a15b46c6615e8dfc414c6f08464843 (diff)
From Fulko Hew:
1/ patches to support the libpcap/SITA format 'WTAP_ENCAP_SITA'. 2/ patches to the LAPB dissector to accept MLP (Multi-link protocol) (although MLP dissection has _not_ been added (yet)). 3/ New protocol dissectors for: a) SITA's WAN layer 0 status header, b) An airline protocol ALC, c) An airline (and other industry) protocol UTS. These patches are submitted as a set since the new protocol dissectors are not useful without the libpcap/SITA related changes, and there is no point in having those changes without the additional dissectors. This fixes bug/enhancement 2016. svn path=/trunk/; revision=23885
Diffstat (limited to 'epan/dissectors/packet-lapb.c')
-rw-r--r--epan/dissectors/packet-lapb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-lapb.c b/epan/dissectors/packet-lapb.c
index 4599aa2095..7747614ec9 100644
--- a/epan/dissectors/packet-lapb.c
+++ b/epan/dissectors/packet-lapb.c
@@ -103,7 +103,7 @@ dissect_lapb(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
byte0 = tvb_get_guint8(tvb, 0);
- if (byte0 != 0x01 && byte0 != 0x03) /* invalid LAPB frame */
+ if (byte0 != 0x01 && byte0 != 0x03 && byte0 != 0x07 && byte0 != 0x0f) /* invalid LAPB frame */
{
if (check_col(pinfo->cinfo, COL_INFO))
col_set_str(pinfo->cinfo, COL_INFO, "Invalid LAPB frame");