diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-01-31 01:02:14 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-01-31 01:02:14 +0000 |
commit | f88816e60f1f14f2662c20740db6ecf3764e82b6 (patch) | |
tree | 4fc64f4ea929901c9f1cc62467bfce72435baa2b /packet-frame.c | |
parent | 1c898c8a11d0d008719d2d563b65d7c362e530ce (diff) | |
download | wireshark-f88816e60f1f14f2662c20740db6ecf3764e82b6.tar.gz wireshark-f88816e60f1f14f2662c20740db6ecf3764e82b6.tar.bz2 wireshark-f88816e60f1f14f2662c20740db6ecf3764e82b6.zip |
Add WTAP_ENCAP_FRELAY_WITH_PHDR for use with Frame Relay capture files
that have direction information.
Support writing WTAP_ENCAP_FRELAY_WITH_PHDR and WTAP_ENCAP_PPP_WITH_PHDR
captures out in libpcap format - we throw away the direction
information, but so it goes.
When reading/writing Windows Sniffer format, read and write the
direction flag.
svn path=/trunk/; revision=7052
Diffstat (limited to 'packet-frame.c')
-rw-r--r-- | packet-frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-frame.c b/packet-frame.c index f44fa308c8..9ff60ba1dd 100644 --- a/packet-frame.c +++ b/packet-frame.c @@ -2,7 +2,7 @@ * * Top-most dissector. Decides dissector based on Wiretap Encapsulation Type. * - * $Id: packet-frame.c,v 1.33 2002/12/20 07:56:07 sharpe Exp $ + * $Id: packet-frame.c,v 1.34 2003/01/31 01:02:03 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -90,7 +90,7 @@ dissect_frame(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) break; case WTAP_ENCAP_LAPB: - case WTAP_ENCAP_FRELAY: + case WTAP_ENCAP_FRELAY_WITH_PHDR: pinfo->p2p_dir = (pinfo->pseudo_header->x25.flags & FROM_DCE) ? P2P_DIR_RECV : P2P_DIR_SENT; |