diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-21 04:41:37 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-21 04:41:37 +0000 |
commit | c312f69abcbd44c8ca982f16d086c5bef05783f7 (patch) | |
tree | a96809a3c62e1475a013044d5a312bfc58622083 /wiretap/lanalyzer.c | |
parent | 66752e74e9cd57d06556d6d2f093514e1102b634 (diff) | |
download | wireshark-c312f69abcbd44c8ca982f16d086c5bef05783f7.tar.gz wireshark-c312f69abcbd44c8ca982f16d086c5bef05783f7.tar.bz2 wireshark-c312f69abcbd44c8ca982f16d086c5bef05783f7.zip |
Make sure to pass the sent/received direction from pppdump.c in
pseudo_header.
Use generic "p2p_phdr" instead of "lapd_phdr". Modify toshiba.c and
packet-lapd.c to take that into account.
Add frame.p2p_dir, a filterable field, 0=sent, 1=recvd
Make p2p_dir available in packe_info, as I think it will be needed
in VJ COMP and UNCOMP dissection.
Rename WTAP_ENCAP_TR to WTAP_ENCAP_TOKEN_RING.
Mention pppd-log support in man page.
Mention atmsnoop in README.
svn path=/trunk/; revision=2455
Diffstat (limited to 'wiretap/lanalyzer.c')
-rw-r--r-- | wiretap/lanalyzer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/lanalyzer.c b/wiretap/lanalyzer.c index 4df14843c9..e566c71866 100644 --- a/wiretap/lanalyzer.c +++ b/wiretap/lanalyzer.c @@ -1,6 +1,6 @@ /* lanalyzer.c * - * $Id: lanalyzer.c,v 1.25 2000/09/07 05:34:10 gram Exp $ + * $Id: lanalyzer.c,v 1.26 2000/09/21 04:41:30 gram Exp $ * * Wiretap Library * Copyright (c) 1998 by Gilbert Ramirez <gram@xiexie.org> @@ -167,7 +167,7 @@ int lanalyzer_open(wtap *wth, int *err) wth->file_encap = WTAP_ENCAP_ETHERNET; break; case BOARD_325TR: - wth->file_encap = WTAP_ENCAP_TR; + wth->file_encap = WTAP_ENCAP_TOKEN_RING; break; default: g_message("lanalyzer: board type %u unknown", |