tcpdump mailing list archives

Automatic report from sources (tcpdump libpcap htdocs) between 10.02.2003 - 11.02.2003 GMT


From: "Automatic cvs log generator /tcpdump/bin/makelog" <mcr () sandelman ottawa on ca>
Date: Tue, 11 Feb 2003 05:07:13 -0500 (EST)

CVS log entries from 10.02.2003 (Mon) 10:05:45 - 11.02.2003 (Tue) 10:05:57 GMT
=====================================================
Summary by authors
=====================================================
Author: guy
        File: libpcap/pcap.c; Revisions: 1.48, 1.47, 1.46
        File: tcpdump/configure; Revisions: 1.97
        File: libpcap/pcap-enet.c; Revisions: 1.7
        File: tcpdump/print-bgp.c; Revisions: 1.61
        File: libpcap/pcap.h; Revisions: 1.43, 1.42
        File: libpcap/CREDITS; Revisions: 1.57, 1.56
        File: libpcap/configure.in; Revisions: 1.98
        File: libpcap/pcap-bpf.c; Revisions: 1.57, 1.56
        File: tcpdump/config.h.in; Revisions: 1.45
        File: libpcap/pcap.3; Revisions: 1.47, 1.46
        File: libpcap/FILES; Revisions: 1.23
        File: libpcap/configure; Revisions: 1.36
        File: libpcap/pcap-bpf.h; Revisions: 1.1
        File: tcpdump/tcpdump.c; Revisions: 1.203, 1.202
        File: libpcap/bpf/net/bpf.h; Revisions: 1.68
        File: tcpdump/configure.in; Revisions: 1.160
        File: libpcap/packaging/pcap.spec; Revisions: 1.2
        File: libpcap/bpf/net/bpf_filter.c; Revisions: 1.41
        File: libpcap/Makefile.in; Revisions: 1.92, 1.91, 1.90

Author: hannes
        File: tcpdump/print-bgp.c; Revisions: 1.60

=====================================================
Combined list of identical log entries
=====================================================
Description:
Before testing for DLPI, test for "/usr/include/odmi.h", so that, on
AIX, we choose BPF, not DLPI, by default; we won't necessarily choose
BPF if no libpcap-based program has been run since booting, as libpcap
(both IBM's and, now, ours) create BPF devices and load the driver if
that hasn't already been done since booting).
Modified files:
        File: libpcap/configure; Revision: 1.36;
        Date: 2003/02/11 06:21:29; Author: guy; Lines: (+46 -39)
        File: libpcap/configure.in; Revision: 1.98;
        Date: 2003/02/11 06:21:00; Author: guy; Lines: (+9 -2)
-------------------------------
Description:
Use "pcap_lib_version()" to get the libpcap version number if it's
available in the libpcap we're using.
Modified files:
        File: tcpdump/config.h.in; Revision: 1.45;
        Date: 2003/02/11 07:42:30; Author: guy; Lines: (+3 -0)
        File: tcpdump/configure; Revision: 1.97;
        Date: 2003/02/11 07:42:30; Author: guy; Lines: (+61 -59)
        File: tcpdump/configure.in; Revision: 1.160;
        Date: 2003/02/11 07:41:52; Author: guy; Lines: (+14 -12)
        File: tcpdump/tcpdump.c; Revision: 1.202;
        Date: 2003/02/11 07:41:52; Author: guy; Lines: (+11 -4)
-------------------------------
Description:
From Shaun <delius () progsoc uts edu au>: on AIX, load the BPF driver and
create the BPF device nodes if necessary, and rename our "bpf.h" to
"pcap-bpf.h" and install it in "/usr/include", so that "pcap-bpf.c" gets
the system's bpf.h file if it includes <net/bpf.h> - on AIX, it needs to
get an AIX-specific structure from that header in order to support
loading the driver and creating the nodes.

Update "packaging/pcap.spec".
Modified files:
        File: libpcap/CREDITS; Revision: 1.56;
        Date: 2003/02/11 01:46:05; Author: guy; Lines: (+1 -0)
        File: libpcap/FILES; Revision: 1.23;
        Date: 2003/02/11 01:46:45; Author: guy; Lines: (+1 -1)
        File: libpcap/Makefile.in; Revision: 1.90;
        Date: 2003/02/11 01:46:05; Author: guy; Lines: (+6 -8)
        File: libpcap/pcap-bpf.c; Revision: 1.56;
        Date: 2003/02/11 01:46:05; Author: guy; Lines: (+193 -2)
        File: libpcap/pcap-bpf.h; Revision: 1.1;
        Date: 2003/02/11 01:46:06; Author: guy;
        File: libpcap/pcap-enet.c; Revision: 1.7;
        Date: 2003/02/11 01:46:06; Author: guy; Lines: (+2 -2)
        File: libpcap/pcap.h; Revision: 1.42;
        Date: 2003/02/11 01:46:06; Author: guy; Lines: (+4 -2)
        File: libpcap/bpf/net/bpf.h; Revision: 1.68;
        Date: 2003/02/11 01:46:06; Author: guy; Lines: (+1 -1)
        File: libpcap/bpf/net/bpf_filter.c; Revision: 1.41;
        Date: 2003/02/11 01:46:07; Author: guy; Lines: (+2 -2)
        File: libpcap/packaging/pcap.spec; Revision: 1.2;
        Date: 2003/02/11 01:46:07; Author: guy; Lines: (+4 -4)
-------------------------------
Description:
Support dot-dot version numbers.

Generate version.h before generating dependencies.
Modified files:
        File: libpcap/Makefile.in; Revision: 1.92;
        Date: 2003/02/11 08:01:40; Author: guy; Lines: (+5 -4)
        File: libpcap/pcap.c; Revision: 1.48;
        Date: 2003/02/11 08:01:40; Author: guy; Lines: (+6 -1)
-------------------------------
Description:
Add a "pcap_lib_version()" routine to return a version string for
libpcap; it generates the string at run time on the first call, so that
it's not a constant string - in at least some UNIXes, constant data in a
shared library is kept separate from the library code, and is bound into
applications linked with that library at link time, not at run time, so
a constant string (such as "pcap_version[]") can reflect the version of
the library with which the application was built, not the version with
which it's running.

Document it, in the hopes that vendors will be less likely to omit it
from their libpcaps (unlike "pcap_version[]", which is absent from some
vendors' libpcaps).
Modified files:
        File: libpcap/Makefile.in; Revision: 1.91;
        Date: 2003/02/11 07:40:09; Author: guy; Lines: (+7 -2)
        File: libpcap/pcap.3; Revision: 1.46;
        Date: 2003/02/11 07:40:09; Author: guy; Lines: (+9 -6)
        File: libpcap/pcap.c; Revision: 1.46;
        Date: 2003/02/11 07:40:09; Author: guy; Lines: (+24 -1)
        File: libpcap/pcap.h; Revision: 1.43;
        Date: 2003/02/11 07:40:09; Author: guy; Lines: (+3 -1)
=====================================================
Log entries
=====================================================
Description:
Put in Shaun Clowes' full name.
Modified files:
        File: libpcap/CREDITS; Revision: 1.57;
        Date: 2003/02/11 02:07:20; Author: guy; Lines:  (+1 -1)
-------------------------------
Description:
Use "odm_err_msg()" to get the error message string corresponding to ODM
errors.

Check for "odm_terminate()" failing.

Fix a typo.

Remove spaces between casts and variables, to match the style used
elsewhere.
Modified files:
        File: libpcap/pcap-bpf.c; Revision: 1.57;
        Date: 2003/02/11 06:19:26; Author: guy; Lines:  (+29 -13)
-------------------------------
Description:
Don't describe the string returned by "pcap_lib_version()" as a version
number - it has more than just a version number in it (and may have two
version numbers for WinPcap).
Modified files:
        File: libpcap/pcap.3; Revision: 1.47;
        Date: 2003/02/11 08:03:21; Author: guy; Lines:  (+4 -3)
-------------------------------
Description:
Handle Win32/WinPcap differently when generating the version string.
Modified files:
        File: libpcap/pcap.c; Revision: 1.47;
        Date: 2003/02/11 07:50:03; Author: guy; Lines:  (+20 -4)
-------------------------------
Description:
Fix up a format string to match what's supplied to it.
Modified files:
        File: tcpdump/print-bgp.c; Revision: 1.61;
        Date: 2003/02/11 06:28:39; Author: guy; Lines:  (+2 -2)
-------------------------------
Description:
- added backwards compatible extd community IDs
    as defined in draft-rosen-vpns-ospf-bgp-mpls-06.xt
- bugfix for reading out the correct router-type field
- better handling (more verbose) display for unknown community formats
Modified files:
        File: tcpdump/print-bgp.c; Revision: 1.60;
        Date: 2003/02/10 16:59:30; Author: hannes; Lines:  (+48 -24)
-------------------------------
Description:
The string returned by "pcap_lib_version()" isn't just a version number;
just print it as is, don't prefix it with "libpcap version".
Modified files:
        File: tcpdump/tcpdump.c; Revision: 1.203;
        Date: 2003/02/11 08:04:18; Author: guy; Lines:  (+2 -2)
=====================================================
Summary of modified files
=====================================================
File: libpcap/CREDITS
Revisions: 1.57, 1.56
Authors: guy (+1 -1), guy (+1 -0)
-------------------------------
File: libpcap/FILES
Revisions: 1.23
Authors: guy (+1 -1)
-------------------------------
File: libpcap/Makefile.in
Revisions: 1.92, 1.91, 1.90
Authors: guy (+5 -4), guy (+7 -2), guy (+6 -8)
-------------------------------
File: libpcap/bpf/net/bpf.h
Revisions: 1.68
Authors: guy (+1 -1)
-------------------------------
File: libpcap/bpf/net/bpf_filter.c
Revisions: 1.41
Authors: guy (+2 -2)
-------------------------------
File: libpcap/configure
Revisions: 1.36
Authors: guy (+46 -39)
-------------------------------
File: libpcap/configure.in
Revisions: 1.98
Authors: guy (+9 -2)
-------------------------------
File: libpcap/packaging/pcap.spec
Revisions: 1.2
Authors: guy (+4 -4)
-------------------------------
File: libpcap/pcap-bpf.c
Revisions: 1.57, 1.56
Authors: guy (+29 -13), guy (+193 -2)
-------------------------------
File: libpcap/pcap-bpf.h
Revisions: 1.1
Authors: guy
-------------------------------
File: libpcap/pcap-enet.c
Revisions: 1.7
Authors: guy (+2 -2)
-------------------------------
File: libpcap/pcap.3
Revisions: 1.47, 1.46
Authors: guy (+4 -3), guy (+9 -6)
-------------------------------
File: libpcap/pcap.c
Revisions: 1.48, 1.47, 1.46
Authors: guy (+6 -1), guy (+20 -4), guy (+24 -1)
-------------------------------
File: libpcap/pcap.h
Revisions: 1.43, 1.42
Authors: guy (+3 -1), guy (+4 -2)
-------------------------------
File: tcpdump/config.h.in
Revisions: 1.45
Authors: guy (+3 -0)
-------------------------------
File: tcpdump/configure
Revisions: 1.97
Authors: guy (+61 -59)
-------------------------------
File: tcpdump/configure.in
Revisions: 1.160
Authors: guy (+14 -12)
-------------------------------
File: tcpdump/print-bgp.c
Revisions: 1.61, 1.60
Authors: guy (+2 -2), hannes (+48 -24)
-------------------------------
File: tcpdump/tcpdump.c
Revisions: 1.203, 1.202
Authors: guy (+2 -2), guy (+11 -4)
-- 
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:tcpdump-workers-request () tcpdump org?body=unsubscribe


Current thread: