From d471f94388a5dd1ca01e69520a9994c8b36df6ce Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 7 May 2002 06:25:30 +0000 Subject: [PATCH] Traffic with a traffic type of 0x06 is Signalling AAL traffic, including non-Q.2931 SSCOP traffic; change comments to reflect that. svn path=/trunk/; revision=5411 --- wiretap/snoop.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wiretap/snoop.c b/wiretap/snoop.c index 7d51201697..12f12727a1 100644 --- a/wiretap/snoop.c +++ b/wiretap/snoop.c @@ -1,6 +1,6 @@ /* snoop.c * - * $Id: snoop.c,v 1.48 2002/04/30 18:58:16 guy Exp $ + * $Id: snoop.c,v 1.49 2002/05/07 06:25:30 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez @@ -489,7 +489,7 @@ snoop_read_atm_pseudoheader(FILE_T fh, union wtap_pseudo_header *pseudo_header, pseudo_header->atm.type = TRAF_ILMI; break; - case 0x06: /* Q.2931 */ + case 0x06: /* Signalling AAL */ pseudo_header->atm.aal = AAL_SIGNALLING; pseudo_header->atm.type = TRAF_UNKNOWN; break; @@ -674,7 +674,7 @@ static gboolean snoop_dump(wtap_dumper *wdh, switch (pseudo_header->atm.aal) { case AAL_SIGNALLING: - /* Q.2931 */ + /* Signalling AAL */ atm_hdr.flags |= 0x06; break;