tcpdump mailing list archives

Automatic report from sources (tcpdump libpcap htdocs) between 11.03.2004 - 12.03.2004 GMT


From: "Automatic cvs log generator /tcpdump/bin/makelog" <mcr () sandelman ottawa on ca>
Date: Fri, 12 Mar 2004 05:06:31 -0500 (EST)

CVS log entries from 11.03.2004 (Thu) 10:05:58 - 12.03.2004 (Fri) 10:05:28 GMT
=====================================================
Summary by authors
=====================================================
Author: guy
        File: tcpdump/print-isakmp.c; Revisions: 1.46, 1.45, 1.44, 1.36.2.10, 1.36.2.9, 1.36.2.8, 1.36.2.7
        File: tcpdump/configure; Revisions: 1.121
        File: libpcap/fad-getad.c; Revisions: 1.9, 1.7.2.2
        File: libpcap/pcap-bpf.h; Revisions: 1.17, 1.9.2.7, 1.9.2.6
        File: libpcap/savefile.c; Revisions: 1.104, 1.103, 1.92.2.11, 1.92.2.10
        File: tcpdump/config.h.in; Revisions: 1.55

=====================================================
Combined list of identical log entries
=====================================================
Description:
Put a null statement after a label that had no statement after it, to
squelch a compiler warning.
Modified files:
        File: tcpdump/print-isakmp.c; Revision: 1.44;
        Date: 2004/03/12 01:13:53; Author: guy; Lines: (+2 -2)
        File: tcpdump/print-isakmp.c; Revision: 1.36.2.8;
        Date: 2004/03/12 01:14:17; Author: guy; Lines: (+2 -2)
-------------------------------
Description:
Regenerate.
Modified files:
        File: tcpdump/config.h.in; Revision: 1.55;
        Date: 2004/03/11 23:53:33; Author: guy; Lines: (+3 -0)
        File: tcpdump/configure; Revision: 1.121;
        Date: 2004/03/11 23:53:33; Author: guy; Lines: (+22 -1)
-------------------------------
Description:
Add in the Symantec firewall DLT_ value and LINKTYPE_ values, and the
DLT_JUNIPER_MONITOR value, to note that they're not available for
anybody else to use.

Move LINKTYPE_DOCSIS up to its normal position by number, and put in a
comment noting that it's not supported by libpcap 0.8[.x] but is
included to note that it's not available for anybody else to use.
Modified files:
        File: libpcap/pcap-bpf.h; Revision: 1.9.2.6;
        Date: 2004/03/11 23:12:36; Author: guy; Lines: (+18 -1)
        File: libpcap/savefile.c; Revision: 1.92.2.10;
        Date: 2004/03/11 23:12:36; Author: guy; Lines: (+16 -2)
-------------------------------
Description:
Don't rely on SA_LEN to check whether it's passed a null pointer (it
might be supplied by the OS, and the OS might supply a version that
doesn't check); instead, check for null pointers before doing anything
with the address at all.  This also means we don't supply a netmask if
the address is null; that makes sense, as a netmask makes no sense
without an address.
Modified files:
        File: libpcap/fad-getad.c; Revision: 1.9;
        Date: 2004/03/11 23:04:24; Author: guy; Lines: (+34 -13)
        File: libpcap/fad-getad.c; Revision: 1.7.2.2;
        Date: 2004/03/11 23:04:52; Author: guy; Lines: (+34 -13)
-------------------------------
Description:
Beef up some comments, and clean up some other comments.
Modified files:
        File: libpcap/pcap-bpf.h; Revision: 1.17;
        Date: 2004/03/11 23:47:29; Author: guy; Lines: (+14 -10)
        File: libpcap/pcap-bpf.h; Revision: 1.9.2.7;
        Date: 2004/03/11 23:49:04; Author: guy; Lines: (+14 -10)
-------------------------------
Description:
From Bill Fenner: add checks to make sure we don't run past the end of
the captured data in the packet.

Have "rawprint()" return a success-or-failure indication and have its
callers (if they don't know that it can't fail) print a truncation
indication if it fails.
Modified files:
        File: tcpdump/print-isakmp.c; Revision: 1.46;
        Date: 2004/03/12 02:17:18; Author: guy; Lines: (+95 -21)
        File: tcpdump/print-isakmp.c; Revision: 1.36.2.10;
        Date: 2004/03/12 02:18:30; Author: guy; Lines: (+95 -21)
-------------------------------
Description:
Pass the length from the payload header to the print routines for
various payload types.  Use that in those routines rather than getting
the length ourselves (which fixes a case where we were getting it
incorrectly, forgetting to "ntohs()" it).

In "isakmp_id_print()", if the item length is less than the size of the
fixed-length portion of the payload, don't subtract the latter from the
former and use it as the length of the variable-length portion, just set
the length in question to 0.
Modified files:
        File: tcpdump/print-isakmp.c; Revision: 1.45;
        Date: 2004/03/12 01:26:59; Author: guy; Lines: (+74 -70)
        File: tcpdump/print-isakmp.c; Revision: 1.36.2.9;
        Date: 2004/03/12 01:27:27; Author: guy; Lines: (+74 -70)
=====================================================
Log entries
=====================================================
Description:
Put the LINKTYPE_ values in numerical order, to make it easier to make
sure that all values from 100 to the current maximum value are in use;
put in comments to indicate for what purpose the reserved ones are
reserved.

Note in the "don't just grab a value and use it yourself" comment why
you shouldn't use values below 100 or above the maximum value you see in
the file.
Modified files:
        File: libpcap/savefile.c; Revision: 1.104;
        Date: 2004/03/11 23:40:54; Author: guy; Lines:  (+76 -17)
-------------------------------
Description:
Add support for 99 as a linktype in a capture file.
Modified files:
        File: libpcap/savefile.c; Revision: 1.103;
        Date: 2004/03/11 19:56:45; Author: guy; Lines:  (+5 -1)
-------------------------------
Description:
Put the LINKTYPE_ values in numerical order, to make it easier to make
sure that all values from 100 to the current maximum value are in use;
put in comments to indicate for what purpose the reserved ones are
reserved.

Add in LINKTYPE_JUNIPER_MONITOR, just so we have all the current types.

Note in the "don't just grab a value and use it yourself" comment why
you shouldn't use values below 100 or above the maximum value you see in
the file.
Modified files:
        File: libpcap/savefile.c; Revision: 1.92.2.11;
        Date: 2004/03/11 23:46:14; Author: guy; Lines:  (+83 -17)
-------------------------------
Description:
Print unsigned values with %u, not %d.
Modified files:
        File: tcpdump/print-isakmp.c; Revision: 1.36.2.7;
        Date: 2004/03/12 01:12:57; Author: guy; Lines:  (+2 -2)
=====================================================
Summary of modified files
=====================================================
File: libpcap/fad-getad.c
Revisions: 1.9, 1.7.2.2
Authors: guy (+34 -13), guy (+34 -13)
-------------------------------
File: libpcap/pcap-bpf.h
Revisions: 1.17, 1.9.2.7, 1.9.2.6
Authors: guy (+14 -10), guy (+14 -10), guy (+18 -1)
-------------------------------
File: libpcap/savefile.c
Revisions: 1.104, 1.103, 1.92.2.11, 1.92.2.10
Authors: guy (+76 -17), guy (+5 -1), guy (+83 -17), guy (+16 -2)
-------------------------------
File: tcpdump/config.h.in
Revisions: 1.55
Authors: guy (+3 -0)
-------------------------------
File: tcpdump/configure
Revisions: 1.121
Authors: guy (+22 -1)
-------------------------------
File: tcpdump/print-isakmp.c
Revisions: 1.46, 1.45, 1.44, 1.36.2.10, 1.36.2.9, 1.36.2.8, 1.36.2.7
Authors: guy (+95 -21), guy (+74 -70), guy (+2 -2), guy (+95 -21), guy (+74 -70), guy (+2 -2), guy (+2 -2)
-- 
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: