diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-08-13 03:32:57 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-08-13 03:32:57 +0000 |
commit | 77bb2477bad88420fecc15e3a65e5efee066f582 (patch) | |
tree | e42b3732ecc66a68f55ce4fffdc3707519c4bcb4 /wiretap/atm.h | |
parent | 8616a33765b7c90c36833f32a2a436252af80564 (diff) | |
download | wireshark-77bb2477bad88420fecc15e3a65e5efee066f582.tar.gz wireshark-77bb2477bad88420fecc15e3a65e5efee066f582.tar.bz2 wireshark-77bb2477bad88420fecc15e3a65e5efee066f582.zip |
Get rid of the "vpi" and "vci" arguments to "atm_guess_traffic_type()",
have it get that information from the pseudo-header instead, and set the
VPI and VCI fields in the pseudo-header before calling it.
Don't call it for non-ATM NetMon captures.
svn path=/trunk/; revision=5982
Diffstat (limited to 'wiretap/atm.h')
-rw-r--r-- | wiretap/atm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/atm.h b/wiretap/atm.h index fa6b2d0dbb..dca6db6f75 100644 --- a/wiretap/atm.h +++ b/wiretap/atm.h @@ -1,6 +1,6 @@ /* atm.h * - * $Id: atm.h,v 1.1 2002/04/30 18:58:15 guy Exp $ + * $Id: atm.h,v 1.2 2002/08/13 03:32:56 guy Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu> @@ -31,7 +31,7 @@ extern void atm_guess_traffic_type(const guint8 *pd, guint32 len, - guint16 vpi, guint16 vci, union wtap_pseudo_header *pseudo_header); + union wtap_pseudo_header *pseudo_header); extern void atm_guess_lane_type(const guint8 *pd, guint32 len, |