OpenBSD CVS

CVS log for src/usr.sbin/tcpdump/print-ip.c


[BACK] Up to [local] / src / usr.sbin / tcpdump

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.53 / (download) - annotate - [select for diffs], Fri Jan 24 22:46:36 2020 UTC (4 years, 4 months ago) by procter
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, HEAD
Changes since 1.52: +73 -70 lines
Diff to previous 1.52 (colored)

- (void)printf() -> printf(); the cast adds clutter for little value.
- fprintf(stdout, ...) -> printf()
- fputs(x, stdout) -> printf(); for consistency.
fputs is twice as fast on atom x5-Z8300@1.44GHz but Amdahl sees a pure printf
tcpdump only 2% slower than a pure fputs (for constant strings) tcpdump
to /dev/null across a 20MB/~170k packet pcap file.

ok dlg@ for fputs and ok tedu@ krw@ deraadt@ a2k19 for the rest

Revision 1.52 / (download) - annotate - [select for diffs], Thu Sep 19 23:23:58 2019 UTC (4 years, 8 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.51: +4 -1 lines
Diff to previous 1.51 (colored)

print the IPs on ESP packets.

this was lost when tcpdump learnt to look inside udpencap.

found by, and ok markus@

Revision 1.51 / (download) - annotate - [select for diffs], Mon Oct 22 16:12:45 2018 UTC (5 years, 7 months ago) by kn
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.50: +2 -4 lines
Diff to previous 1.50 (colored)

Remove #ifdef INET6

There's not reason to build without IPv6 support, `-U INET6' builds were
broken anyway.

Fix an empty redefine for IPPROTO_IPV6 in print-ip.c while here.

No object change on amd64 and sparc64 with clang, gcc compiles differently
but behaviour stays the same.

OK denis deraadt

Revision 1.50 / (download) - annotate - [select for diffs], Fri Jul 6 04:49:21 2018 UTC (5 years, 10 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.49: +1 -35 lines
Diff to previous 1.49 (colored)

move the ip checksumming code into in_cksum.c

this is part of a bigger change that refactors udp handling, but
works on hosts of both endians.

discussed at length with proctor@
ok sthen@

Revision 1.49 / (download) - annotate - [select for diffs], Sat Feb 10 10:00:32 2018 UTC (6 years, 3 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.48: +5 -3 lines
Diff to previous 1.48 (colored)

print etherip on ipv6.

Revision 1.48 / (download) - annotate - [select for diffs], Tue Feb 6 03:07:51 2018 UTC (6 years, 3 months ago) by dlg
Branch: MAIN
Changes since 1.47: +4 -9 lines
Diff to previous 1.47 (colored)

rework ppp, pptp, and gre parsing.

this started cos i was looking at pptp, which came out like this:

23:52:00.197893  call 24 seq 7: gre-ppp-payload (gre encap)
23:52:00.198930  call 1 seq 7 ack 7: gre-ppp-payload (gre encap)

now it looks like this:

23:52:00.197893 20.0.0.2 > 20.0.0.1: pptp callid 24 seq 7: 17.1.1.122 > 40.0.0.2: icmp: echo request
23:52:00.198930 20.0.0.1 > 20.0.0.2: pptp callid 1 seq 7 ack 7: 40.0.0.2 > 17.1.1.122: icmp: echo reply

the big improvement in ppp parsing is it stops parsing based on
what the ppp headers say, rather than what bytes have been captured.
this also adds parsing of EAP packets.

DLT_PPP_SERIAL is now recognised and printed. gre now prints the
outer addresses always, not just when it's encapsulated by ipv6 or
-v is passed to tcpdump.

ok sthen@

Revision 1.47 / (download) - annotate - [select for diffs], Sun Oct 30 04:10:21 2016 UTC (7 years, 7 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.46: +3 -1 lines
Diff to previous 1.46 (colored)

If a length from an ip packet encapsulated in gre or etherip would cause
the position to go past snapend truncate.  Found with afl.

Revision 1.46 / (download) - annotate - [select for diffs], Sun Oct 30 04:03:29 2016 UTC (7 years, 7 months ago) by jsg
Branch: MAIN
Changes since 1.45: +2 -5 lines
Diff to previous 1.45 (colored)

Replace a snapend test in ip_print() with a call to TCHECK2 as there
is already a trunc label with the same printf in the function.

Revision 1.45 / (download) - annotate - [select for diffs], Mon Nov 16 00:16:39 2015 UTC (8 years, 6 months ago) by mmcc
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.44: +17 -18 lines
Diff to previous 1.44 (colored)

Remove remaining instances of the register keyword.

ok deraadt@

Revision 1.44 / (download) - annotate - [select for diffs], Fri Aug 21 02:07:32 2015 UTC (8 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored)

since stdlib.h is in scope, don't cast.... you know the drill.
no sneakiness detected by krw

Revision 1.43 / (download) - annotate - [select for diffs], Fri Jan 16 06:40:21 2015 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.42: +1 -2 lines
Diff to previous 1.42 (colored)

Replace <sys/param.h> with <limits.h> and other less dirty headers where
possible.  Annotate <sys/param.h> lines with their current reasons.  Switch
to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc.  Change
MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where
sensible to avoid pulling in the pollution.  These are the files confirmed
through binary verification.
ok guenther, millert, doug (helped with the verification protocol)

Revision 1.42 / (download) - annotate - [select for diffs], Tue Dec 9 17:03:19 2014 UTC (9 years, 5 months ago) by mikeb
Branch: MAIN
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored)

Catch up with the BPF_ALIGNMENT switch to the uint32_t.

bpf aligns data following the datalink header (e.g. ethernet)
on the BPF_ALIGNMENT boundary.  Since rev1.41 of bpf.h it's
uint32_t instead of a long.  And also since then almost all
packets become "unaligned" from the tcpdump perspective and
require costly copies into the internal buffer.  Neither IP
header (struct ip) nor IPv6 (struct ip6_hdr) have fields
larger than 32 bits and therefore alignment requirements for
them are at most 32 bit.

ok millert, jsg, deraadt

Revision 1.41 / (download) - annotate - [select for diffs], Wed Dec 3 13:22:18 2014 UTC (9 years, 6 months ago) by mikeb
Branch: MAIN
Changes since 1.40: +12 -7 lines
Diff to previous 1.40 (colored)

Restore packetp and snapend pointers once we're done with an incorrectly
aligned IP/IPv6 packet so that tcpdump can print hexdump of the whole
packet including the Ethernet header (if requested) and not only the
IP/IPv6 part of it.

ok jsg

Revision 1.40 / (download) - annotate - [select for diffs], Wed Dec 3 13:19:03 2014 UTC (9 years, 6 months ago) by mikeb
Branch: MAIN
Changes since 1.39: +6 -1 lines
Diff to previous 1.39 (colored)

Fixup a crash found by jsg using the AFL fuzzer.  IP and IPv6 printing
routines should check that there's at least a complete IP/IPv6 header
available in the buffer before trying to do anything else.

ok jsg

Revision 1.39 / (download) - annotate - [select for diffs], Thu Aug 14 12:44:44 2014 UTC (9 years, 9 months ago) by mpi
Branch: MAIN
Changes since 1.38: +1 -3 lines
Diff to previous 1.38 (colored)

No use for <netinet/in_systm.h> nor <netinet/tcpip.h>.

Revision 1.38 / (download) - annotate - [select for diffs], Fri Jun 20 04:04:52 2014 UTC (9 years, 11 months ago) by lteo
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.37: +5 -6 lines
Diff to previous 1.37 (colored)

Instead of showing the difference between a bad checksum and a good
checksum, make tcpdump (with the -v flag) show the actual bad checksum
within the IP/protocol header itself and what the good checksum should
be, e.g. "[bad tcp cksum abcd! -> d1e6]"

This change applies to IP, TCP (over IPv4 and IPv6), UDP (over IPv4 and
IPv6), ICMP, and ICMPv6.  This commit also fixes several inconsistencies
in the way bad checksums were displayed for these protocols.

Tested on amd64, i386, and macppc.

ok henning@

Revision 1.37 / (download) - annotate - [select for diffs], Sat Jan 11 04:35:52 2014 UTC (10 years, 4 months ago) by lteo
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

Make icmp_print() accept the length variable, which is the length of the
packet without the IP header.  This is needed by the next commit that
will allow tcpdump to detect bad ICMP checksums.

Related functions like {tcp,udp,icmp6}_print() already accept this
length variable, so this change makes icmp_print() consistent with
them as well.

This commit makes no functional change to tcpdump itself.

OK florian@

Revision 1.36 / (download) - annotate - [select for diffs], Tue Jan 12 06:10:33 2010 UTC (14 years, 4 months ago) by naddy
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

Add TCP/UDP checksum display for v6 and clean up the checksum
calculation.  Mostly from tcpdump.org; ok jsing@

Revision 1.35 / (download) - annotate - [select for diffs], Tue Oct 27 23:59:55 2009 UTC (14 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.34: +1 -6 lines
Diff to previous 1.34 (colored)

rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable).  these days, people use source.  these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms

Revision 1.34 / (download) - annotate - [select for diffs], Sun Oct 7 16:41:05 2007 UTC (16 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

trash $Header goo which is just annoying; 5595

Revision 1.33 / (download) - annotate - [select for diffs], Wed Jun 27 18:15:25 2007 UTC (16 years, 11 months ago) by canacar
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.32: +7 -4 lines
Diff to previous 1.32 (colored)

When aligning buffers correctly handle the case where the
buffers overlap, which happens on 64 bit archs, when
handling encapsulated packets. Reported and tested by Jurjen Oskam
additional testing by Stuart Henderson and todd@, ok henning@

Revision 1.32 / (download) - annotate - [select for diffs], Thu Jun 1 17:18:39 2006 UTC (18 years ago) by moritz
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.31: +4 -3 lines
Diff to previous 1.31 (colored)

Pass the captured packet length in addition to the real packet length
to etherip_print() and do all the bounds checking with it. Also add
bounds checks to ether_print(). This fixes even more crashes.

ok canacar@

Revision 1.31 / (download) - annotate - [select for diffs], Mon May 29 20:41:41 2006 UTC (18 years ago) by moritz
Branch: MAIN
Changes since 1.30: +2 -3 lines
Diff to previous 1.30 (colored)

No need for return; at end of functions returning void.

Revision 1.30 / (download) - annotate - [select for diffs], Mon May 29 20:30:11 2006 UTC (18 years ago) by moritz
Branch: MAIN
Changes since 1.29: +26 -18 lines
Diff to previous 1.29 (colored)

Be more careful to not touch memory outside the
captured packet. Fixes some more crashes.

ok canacar@ deraadt@

Revision 1.29 / (download) - annotate - [select for diffs], Sat Oct 8 19:24:03 2005 UTC (18 years, 7 months ago) by canacar
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.28: +6 -2 lines
Diff to previous 1.28 (colored)

Check IP version when decoding v4 and v6 packets.
From Jason Wright via PR-4531.

Revision 1.28 / (download) - annotate - [select for diffs], Fri Oct 15 11:10:29 2004 UTC (19 years, 7 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.27: +4 -2 lines
Diff to previous 1.27 (colored)

print ip_len for -v; ok otto, hshoexer, henning

Revision 1.27 / (download) - annotate - [select for diffs], Tue Aug 10 19:55:35 2004 UTC (19 years, 9 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.26: +4 -2 lines
Diff to previous 1.26 (colored)

print checksum differences on -vv; ok otto@

Revision 1.26 / (download) - annotate - [select for diffs], Sat May 8 01:01:35 2004 UTC (20 years, 1 month ago) by mcbride
Branch: MAIN
Changes since 1.25: +5 -3 lines
Diff to previous 1.25 (colored)

Pass the length of what was captured to pfsync_print, not the length
of the original packet.

ok beck@

Revision 1.25 / (download) - annotate - [select for diffs], Wed Apr 28 02:17:03 2004 UTC (20 years, 1 month ago) by mcbride
Branch: MAIN
Changes since 1.24: +16 -8 lines
Diff to previous 1.24 (colored)

Make tcpdump print carp as carp. Printing vrrp can be forced with -T vrrp.

ok markus@ pb@

Revision 1.24 / (download) - annotate - [select for diffs], Wed Feb 4 08:35:12 2004 UTC (20 years, 4 months ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.23: +4 -3 lines
Diff to previous 1.23 (colored)

Some more non-alignment problems resolved.
ok deraadt@

Revision 1.23 / (download) - annotate - [select for diffs], Mon Feb 2 09:43:27 2004 UTC (20 years, 4 months ago) by otto
Branch: MAIN
Changes since 1.22: +4 -5 lines
Diff to previous 1.22 (colored)

Do away with non-aligned memory accesses.
ok deraadt@ hshoexer@

Revision 1.22 / (download) - annotate - [select for diffs], Wed Jan 21 06:15:18 2004 UTC (20 years, 4 months ago) by mcbride
Branch: MAIN
Changes since 1.21: +2 -6 lines
Diff to previous 1.21 (colored)

Clean up pfsync output: print source address by default, pass -vv correctly
to pf_print_state(), and other minor cleanup.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Dec 17 21:36:17 2003 UTC (20 years, 5 months ago) by mcbride
Branch: MAIN
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored)

Change pfsync IP protocol and multicast group numbers.

IPPROTO_PFSYNC -> 240
INADDR_PFSYNC_GROUP -> 224.0.0.240

ok deraadt@

Revision 1.20 / (download) - annotate - [select for diffs], Mon Dec 15 07:11:31 2003 UTC (20 years, 5 months ago) by mcbride
Branch: MAIN
Changes since 1.19: +13 -2 lines
Diff to previous 1.19 (colored)

Add initial support for pf state synchronization over the network.
Implemented as an in-kernel multicast IP protocol.

Turn it on like this:

# ifconfig pfsync0 up syncif fxp0

There is not yet any authentication on this protocol, so the syncif
must be on a trusted network. ie, a crossover cable between the two
firewalls.

NOTABLE CHANGES:
- A new index based on a unique (creatorid, stateid) tuple has been
  added to the state tree.
- Updates now appear on the pfsync(4) interface; multiple updates may
  be compressed into a single update.
- Applications which use bpf on pfsync(4) will need modification;
  packets on pfsync no longer contains regular pf_state structs,
  but pfsync_state structs which contain no pointers.

Much more to come.

ok deraadt@

Revision 1.19 / (download) - annotate - [select for diffs], Thu Feb 20 23:39:20 2003 UTC (21 years, 3 months ago) by jason
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4, OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.18: +9 -2 lines
Diff to previous 1.18 (colored)

add printing of ipcomp, and while in the neighborhood, make ah/esp actually
check the length of the data

Revision 1.18 / (download) - annotate - [select for diffs], Tue Feb 11 12:21:32 2003 UTC (21 years, 3 months ago) by cedric
Branch: MAIN
Changes since 1.17: +4 -3 lines
Diff to previous 1.17 (colored)

Show DF on IP fragments
ok henric@

Revision 1.17 / (download) - annotate - [select for diffs], Wed Sep 18 08:51:17 2002 UTC (21 years, 8 months ago) by jakob
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.16: +2 -6 lines
Diff to previous 1.16 (colored)

remove egp support; unresolved non-bsd license for a decoder of protocol that
noone uses anymore is not worth the amount of work needed to be resolved.

Revision 1.16 / (download) - annotate - [select for diffs], Wed Apr 10 10:22:59 2002 UTC (22 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.15: +6 -2 lines
Diff to previous 1.15 (colored)

If the IP header length is zero, the packet will loop in ip_print().
Taken from tcpdump 3.7.1; mbing@nfr.net; ho ok

Revision 1.15 / (download) - annotate - [select for diffs], Thu Feb 15 16:16:48 2001 UTC (23 years, 3 months ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.14: +8 -8 lines
Diff to previous 1.14 (colored)

There has been confusion wrt IP protocols 4, 94 and 98.  Make us
consistent, and make IPSEC tunnelmode tcpdumping work as expected.

Revision 1.14 / (download) - annotate - [select for diffs], Mon Feb 5 15:18:47 2001 UTC (23 years, 4 months ago) by jason
Branch: MAIN
Changes since 1.13: +10 -2 lines
Diff to previous 1.13 (colored)

etherip printing code... handles draft (v2) and current (v3)

Revision 1.13 / (download) - annotate - [select for diffs], Fri Dec 22 19:08:00 2000 UTC (23 years, 5 months ago) by mickey
Branch: MAIN
Changes since 1.12: +6 -2 lines
Diff to previous 1.12 (colored)

when printing vrrp and verbose set -- print src/dst ip addrs

Revision 1.12 / (download) - annotate - [select for diffs], Thu Dec 7 21:52:38 2000 UTC (23 years, 6 months ago) by mickey
Branch: MAIN
Changes since 1.11: +33 -16 lines
Diff to previous 1.11 (colored)

add vrrp printing; from tcpdump.org

Revision 1.11 / (download) - annotate - [select for diffs], Tue Oct 3 14:31:57 2000 UTC (23 years, 8 months ago) by ho
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.10: +3 -1 lines
Diff to previous 1.10 (colored)

Add $OpenBSD$. (jakob@ ok)

Revision 1.10 / (download) - annotate - [select for diffs], Wed Apr 26 21:35:40 2000 UTC (24 years, 1 month ago) by jakob
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.9: +19 -1 lines
Diff to previous 1.9 (colored)

INET6
DHCP/BOOTP
tcp & udp checksum detection
numerous bugfixes

Revision 1.9 / (download) - annotate - [select for diffs], Sun Jan 16 11:20:14 2000 UTC (24 years, 4 months ago) by jakob
Branch: MAIN
Changes since 1.8: +16 -1 lines
Diff to previous 1.8 (colored)

Mobile IP support (from KAME/NetBSD)

Revision 1.8 / (download) - annotate - [select for diffs], Wed Oct 6 01:46:40 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

big endian fixes; ryker, jd@noc7.uchsc.edu

Revision 1.7 / (download) - annotate - [select for diffs], Thu Sep 16 20:58:47 1999 UTC (24 years, 8 months ago) by brad
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

bring more inline with tcpdump 3.4

Revision 1.6 / (download) - annotate - [select for diffs], Wed Jul 28 20:41:36 1999 UTC (24 years, 10 months ago) by jakob
Branch: MAIN
Changes since 1.5: +41 -3 lines
Diff to previous 1.5 (colored)

-  Merge some changes from tcpdump 3.4
   -a flag; attempt to convert network and broadcast addresses to names
   Improved signal handling
   Miscellaneous fixes and typos
   OSPF MD5 authentication support

-  -X flag; emacs-hexl print (including ascii)

-  Add ECN bits to TCP and IP headers

-  IKE & IPsec (ESP & AH) support

OK deraadt@

Revision 1.5 / (download) - annotate - [select for diffs], Thu Dec 12 16:22:35 1996 UTC (27 years, 5 months ago) by bitblt
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5, OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3, OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.4: +102 -61 lines
Diff to previous 1.4 (colored)

*** empty log message ***

Revision 1.4 / (download) - annotate - [select for diffs], Sat Jul 13 11:01:23 1996 UTC (27 years, 10 months ago) by mickey
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.3: +141 -23 lines
Diff to previous 1.3 (colored)

it is 3.2 now.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Jun 10 07:47:38 1996 UTC (27 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.2: +3 -52 lines
Diff to previous 1.2 (colored)

sync to latest

Revision 1.2 / (download) - annotate - [select for diffs], Mon Mar 4 15:59:26 1996 UTC (28 years, 3 months ago) by mickey
Branch: MAIN
Changes since 1.1: +52 -2 lines
Diff to previous 1.1 (colored)

Updating to the latest LBL release.
Sun's SKIP support added.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:48:25 1995 UTC (28 years, 7 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:48:25 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.