CVS log entries from 22.12.2000 (Fri) 10:06:39 - 23.12.2000 (Sat) 10:06:42 GMT
=====================================================
Summary by authors
=====================================================
Author: guy
File: tcpdump/print-sll.c; Revisions: 1.2
File: tcpdump/print-cip.c; Revisions: 1.11
File: libpcap/lbl/os-osf4.h; Revisions: 1.2
File: tcpdump/print-lane.c; Revisions: 1.11
File: libpcap/CREDITS; Revisions: 1.13
File: tcpdump/print-token.c; Revisions: 1.10
File: tcpdump/print-atm.c; Revisions: 1.20
File: libpcap/sll.h; Revisions: 1.6, 1.5, 1.4, 1.3, 1.2
File: libpcap/config.h.in; Revisions: 1.3
File: libpcap/pcap-linux.c; Revisions: 1.50, 1.49, 1.48, 1.47, 1.46, 1.45
File: libpcap/configure; Revisions: 1.21
File: libpcap/Makefile.in; Revisions: 1.86
File: tcpdump/sll.h; Revisions: 1.4, 1.3, 1.2
File: tcpdump/print-fddi.c; Revisions: 1.49
File: tcpdump/print-ether.c; Revisions: 1.61
=====================================================
Combined list of identical log entries
=====================================================
Description:
Patch from Olaf Kirch to add support for ARPHRD_TUNNEL (or at least for
some tunnels).
Modified files:
File: libpcap/CREDITS; Revision: 1.13;
Date: 2000/12/22 11:53:27; Author: guy; Lines: (+1 -0)
File: libpcap/pcap-linux.c; Revision: 1.45;
Date: 2000/12/22 11:53:27; Author: guy; Lines: (+5 -2)
-------------------------------
Description:
Just copy over the "sll_protocol" field - if it's not an Ethernet type,
we just treat the frame as an LLC frame (if we care about Novell
IPX-over-raw-802.3 frames, we'd have to handle them by checking for
0xFFFF as the first word - but we'd also have to do that when dissecting
Ethernet frames).
Modified files:
File: libpcap/pcap-linux.c; Revision: 1.47;
Date: 2000/12/22 12:24:20; Author: guy; Lines: (+2 -24)
File: libpcap/sll.h; Revision: 1.4;
Date: 2000/12/22 12:24:21; Author: guy; Lines: (+1 -10)
-------------------------------
Description:
Put the LINUX_SLL_P_ definitions back, and check for at least some of
them in "print-sll.c" - as a cooked-mode capture may be reading from
non-Ethernet, non-802.x devices, it may well see some
ETH_P_/LINUX_SLL_P_ types that don't mean "this is an 802.2 LLC frame".
We currently assume that the ETH_P_ values won't change in the kernel,
so we don't have to explicitly map them.
In various link-layer packet printers, if we don't handle the next layer
up of packet type, and are printing the link-layer header, use the
correct pointer to that header (i.e., if we've stepped "p" past the
link-layer header, don't use "p", use a pointer to the beginning of the
packet), and use the correct length (i.e., if we've subtracted the
length of the link-layer header, add it back in, so that we always print
the full packet length).
Modified files:
File: tcpdump/print-atm.c; Revision: 1.20;
Date: 2000/12/22 22:45:09; Author: guy; Lines: (+3 -3)
File: tcpdump/print-cip.c; Revision: 1.11;
Date: 2000/12/22 22:45:10; Author: guy; Lines: (+2 -2)
File: tcpdump/print-ether.c; Revision: 1.61;
Date: 2000/12/22 22:45:10; Author: guy; Lines: (+2 -2)
File: tcpdump/print-fddi.c; Revision: 1.49;
Date: 2000/12/22 22:45:11; Author: guy; Lines: (+4 -3)
File: tcpdump/print-lane.c; Revision: 1.11;
Date: 2000/12/22 22:45:11; Author: guy; Lines: (+2 -2)
File: tcpdump/print-sll.c; Revision: 1.2;
Date: 2000/12/22 22:45:11; Author: guy; Lines: (+23 -7)
File: tcpdump/print-token.c; Revision: 1.10;
Date: 2000/12/22 22:45:12; Author: guy; Lines: (+5 -3)
File: tcpdump/sll.h; Revision: 1.3;
Date: 2000/12/22 22:45:12; Author: guy; Lines: (+25 -1)
-------------------------------
Description:
Regenerate "config.h.in" and "configure".
Modified files:
File: libpcap/config.h.in; Revision: 1.3;
Date: 2000/12/22 11:42:18; Author: guy; Lines: (+6 -0)
File: libpcap/configure; Revision: 1.21;
Date: 2000/12/22 11:42:19; Author: guy; Lines: (+124 -48)
-------------------------------
Description:
It's a bit more convenient for Ethereal if the "sll_protocol" field is
at the end of the link-layer header; put it there.
Put in a comment indicating that the layout of the link-layer header
shouldn't be changed; if a new header is necessary, a new DLL_ type
should be introduced for it.
Modified files:
File: tcpdump/sll.h; Revision: 1.4;
Date: 2000/12/23 07:52:11; Author: guy; Lines: (+16 -2)
File: libpcap/pcap-linux.c; Revision: 1.50;
Date: 2000/12/23 07:50:18; Author: guy; Lines: (+2 -2)
File: libpcap/sll.h; Revision: 1.6;
Date: 2000/12/23 07:50:19; Author: guy; Lines: (+13 -2)
-------------------------------
Description:
Explicitly map PACKET_ values to LINUX_SLL_ values, so that even if a
future Linux kernel changes the PACKET_ values out from under us, the
values recorded in the packet header in DLT_LINUX_SLL captures does
*not* change.
Don't map ETH_P_802_2 to the packet length, map it and ETH_P_802_3 to
standardized LINUX_SLL_P_ values, so that even if a future Linux kernel
changes the ETH_P_ values out from under us, the values recorded in the
packet header in DLT_LINUX_SLL captures does *not* change, and so that
you don't have to be running on Linux to be able to handle DLT_LINUX_SLL
captures.
Modified files:
File: libpcap/pcap-linux.c; Revision: 1.46;
Date: 2000/12/22 12:11:36; Author: guy; Lines: (+59 -9)
File: libpcap/sll.h; Revision: 1.2;
Date: 2000/12/22 12:11:36; Author: guy; Lines: (+15 -5)
-------------------------------
Description:
Update a comment.
Modified files:
File: tcpdump/sll.h; Revision: 1.2;
Date: 2000/12/22 12:18:32; Author: guy; Lines: (+5 -5)
File: libpcap/sll.h; Revision: 1.3;
Date: 2000/12/22 12:14:48; Author: guy; Lines: (+3 -4)
=====================================================
Log entries
=====================================================
Description:
"depend" should depend on "bpf_filter.c", so that we make the
appropriate "bpf_filter.c" symlink before building the dependencies, so
that the dependencies include those for "bpf_filter.c".
Modified files:
File: libpcap/Makefile.in; Revision: 1.86;
Date: 2000/12/22 11:54:48; Author: guy; Lines: (+2 -2)
-------------------------------
Description:
Declare "pfopen()" in "lbl/os-osf4.h", as Digital don't seem to have
bothered to declare it anywhere in a system header file.
Modified files:
File: libpcap/lbl/os-osf4.h; Revision: 1.2;
Date: 2000/12/22 11:51:33; Author: guy; Lines: (+3 -1)
-------------------------------
Description:
Fix a typo.
Modified files:
File: libpcap/pcap-linux.c; Revision: 1.49;
Date: 2000/12/23 03:04:06; Author: guy; Lines: (+2 -2)
-------------------------------
Description:
Check for "ippp" devices, as well as "isdn" and "isdY" devices, when
deciding whether to punt to cooked mode.
Modified files:
File: libpcap/pcap-linux.c; Revision: 1.48;
Date: 2000/12/22 12:30:04; Author: guy; Lines: (+4 -2)
-------------------------------
Description:
Put the LINUX_SLL_P_ definitions back, and check for at least some of
them in "print-sll.c" - as a cooked-mode capture may be reading from
non-Ethernet, non-802.x devices, it may well see some
ETH_P_/LINUX_SLL_P_ types that don't mean "this is an 802.2 LLC frame".
We currently assume that the ETH_P_ values won't change in the kernel,
so we don't have to explicitly map them.
Modified files:
File: libpcap/sll.h; Revision: 1.5;
Date: 2000/12/22 22:34:16; Author: guy; Lines: (+25 -1)
=====================================================
Summary of modified files
=====================================================
File: libpcap/CREDITS
Revisions: 1.13
Authors: guy (+1 -0)
-------------------------------
File: libpcap/Makefile.in
Revisions: 1.86
Authors: guy (+2 -2)
-------------------------------
File: libpcap/config.h.in
Revisions: 1.3
Authors: guy (+6 -0)
-------------------------------
File: libpcap/configure
Revisions: 1.21
Authors: guy (+124 -48)
-------------------------------
File: libpcap/lbl/os-osf4.h
Revisions: 1.2
Authors: guy (+3 -1)
-------------------------------
File: libpcap/pcap-linux.c
Revisions: 1.50, 1.49, 1.48, 1.47, 1.46, 1.45
Authors: guy (+2 -2), guy (+2 -2), guy (+4 -2), guy (+2 -24), guy (+59 -9), guy (+5 -2)
-------------------------------
File: libpcap/sll.h
Revisions: 1.6, 1.5, 1.4, 1.3, 1.2
Authors: guy (+13 -2), guy (+25 -1), guy (+1 -10), guy (+3 -4), guy (+15 -5)
-------------------------------
File: tcpdump/print-atm.c
Revisions: 1.20
Authors: guy (+3 -3)
-------------------------------
File: tcpdump/print-cip.c
Revisions: 1.11
Authors: guy (+2 -2)
-------------------------------
File: tcpdump/print-ether.c
Revisions: 1.61
Authors: guy (+2 -2)
-------------------------------
File: tcpdump/print-fddi.c
Revisions: 1.49
Authors: guy (+4 -3)
-------------------------------
File: tcpdump/print-lane.c
Revisions: 1.11
Authors: guy (+2 -2)
-------------------------------
File: tcpdump/print-sll.c
Revisions: 1.2
Authors: guy (+23 -7)
-------------------------------
File: tcpdump/print-token.c
Revisions: 1.10
Authors: guy (+5 -3)
-------------------------------
File: tcpdump/sll.h
Revisions: 1.4, 1.3, 1.2
Authors: guy (+16 -2), guy (+25 -1), guy (+5 -5)
--
Automatic cron job from /tcpdump/bin/makelog
-
This is the TCPDUMP workers list. It is archived at
http://www.tcpdump.org/lists/workers/index.html
To unsubscribe use mailto:[EMAIL PROTECTED]?body=unsubscribe
[tcpdump-workers] Automatic report from sources (tcpdump libpcap htdocs) between 22.12.2000 - 23.12.2000 GMT
Automatic cvs log generator /tcpdump/bin/makelog Sat, 23 Dec 2000 02:47:46 -0800
