OpenBSD CVS

CVS log for src/usr.sbin/rtadvd/Attic/config.c


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.63, Mon Jul 23 12:04:46 2018 UTC (5 years, 10 months ago) by florian
Branch: MAIN
CVS Tags: HEAD
Changes since 1.62: +1 -1 lines
FILE REMOVED

Remove rtadvd(8), it's time to switch to rad(8).

Revision 1.62 / (download) - annotate - [select for diffs], Tue Aug 8 09:03:02 2017 UTC (6 years, 9 months ago) by jca
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.61: +2 -1 lines
Diff to previous 1.61 (colored)

Do not forget to reschedule the timer when we receive a new prefix.

This way the new prefix can be advertized asap.  ok florian@

Revision 1.61 / (download) - annotate - [select for diffs], Wed Jul 12 06:11:07 2017 UTC (6 years, 10 months ago) by florian
Branch: MAIN
Changes since 1.60: +64 -91 lines
Diff to previous 1.60 (colored)

replace
log_warnx("foo");
exit(1);
with
fatalx("foo);
OK benno

Revision 1.60 / (download) - annotate - [select for diffs], Sun Sep 25 13:54:39 2016 UTC (7 years, 8 months ago) by florian
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.59: +5 -5 lines
Diff to previous 1.59 (colored)

consistently use MAX_ prefix
OK jca

Revision 1.59 / (download) - annotate - [select for diffs], Sun Sep 25 13:54:00 2016 UTC (7 years, 8 months ago) by florian
Branch: MAIN
Changes since 1.58: +3 -3 lines
Diff to previous 1.58 (colored)

Interval calculations are perfectly fine with ints.
OK jca@

Revision 1.58 / (download) - annotate - [select for diffs], Tue Aug 2 17:00:09 2016 UTC (7 years, 10 months ago) by jca
Branch: MAIN
Changes since 1.57: +4 -8 lines
Diff to previous 1.57 (colored)

Move to libevent; ok florian@

Revision 1.57 / (download) - annotate - [select for diffs], Wed Jun 29 14:19:38 2016 UTC (7 years, 11 months ago) by jca
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.56: +6 -8 lines
Diff to previous 1.56 (colored)

Spring cleanup

- pointless casts, kill caddr_t or replace it with char *
- signed counters
- simplify if_getmtu, only one method is needed and SIOCGIFMTU is the
  cheapest
- we no longer have drivers for IFT_FDDI
- hide details of iflist management
- if (dflag) log_debug -> log_debug
- dead code and comments
- etc etc

Input from and ok florian@

Revision 1.56 / (download) - annotate - [select for diffs], Tue Mar 1 20:51:05 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.55: +10 -10 lines
Diff to previous 1.55 (colored)

fatal("malloc") -> fatal(NULL)

Revision 1.55 / (download) - annotate - [select for diffs], Tue Mar 1 12:52:43 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.54: +1 -3 lines
Diff to previous 1.54 (colored)

Pointless 'return;' in void functions

Revision 1.54 / (download) - annotate - [select for diffs], Mon Feb 29 20:25:46 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.53: +11 -34 lines
Diff to previous 1.53 (colored)

Merge add/make_prefix() and kill last use of struct in6_prefixreq in userland.

ok florian@

Revision 1.53 / (download) - annotate - [select for diffs], Mon Feb 29 06:37:55 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.52: +5 -18 lines
Diff to previous 1.52 (colored)

init_prefix() is now trivial, merge it with its caller.

Suggested by and ok bluhm@

Revision 1.52 / (download) - annotate - [select for diffs], Fri Feb 26 12:33:30 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.51: +0 -33 lines
Diff to previous 1.51 (colored)

Remove #if'0ed code that uses a deprecated ioctl; ok florian@

Revision 1.51 / (download) - annotate - [select for diffs], Fri Feb 26 12:31:48 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.50: +1 -7 lines
Diff to previous 1.50 (colored)

Kill some useless members of struct rainfo; ok florian@

Revision 1.50 / (download) - annotate - [select for diffs], Tue Feb 9 00:39:13 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.49: +1 -2 lines
Diff to previous 1.49 (colored)

Kill code to send unicast packets which never got enabled.

and get rid of pointless memory allocations.

ok bluhm@

Revision 1.49 / (download) - annotate - [select for diffs], Mon Feb 8 23:19:00 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.48: +5 -5 lines
Diff to previous 1.48 (colored)

Kill trailing whitespace.

Revision 1.48 / (download) - annotate - [select for diffs], Mon Feb 8 23:15:37 2016 UTC (8 years, 3 months ago) by jca
Branch: MAIN
Changes since 1.47: +5 -5 lines
Diff to previous 1.47 (colored)

typos

Revision 1.47 / (download) - annotate - [select for diffs], Fri Feb 5 11:26:26 2016 UTC (8 years, 3 months ago) by reyk
Branch: MAIN
Changes since 1.46: +6 -2 lines
Diff to previous 1.46 (colored)

rtadvd used a strncpy with a src interface name from the command line
without checking its length.  Replace it with strlcpy, check for
truncation and move the check before using the user-specified
interface name.  While here, replace another strncpy of a interface
name with memset-zero + strlcpy and check for truncation in
if_getmtu() (should not happen as we validated the length before, but
it's better to be safe and generally a better practice).

OK jsg@

Revision 1.46 / (download) - annotate - [select for diffs], Mon Jan 25 05:00:12 2016 UTC (8 years, 4 months ago) by jca
Branch: MAIN
Changes since 1.45: +1 -2 lines
Diff to previous 1.45 (colored)

Redundant assignement is redundant.

Revision 1.45 / (download) - annotate - [select for diffs], Fri Dec 11 20:15:52 2015 UTC (8 years, 5 months ago) by mmcc
Branch: MAIN
Changes since 1.44: +4 -6 lines
Diff to previous 1.44 (colored)

Remove NULL-checks before free().

Revision 1.44 / (download) - annotate - [select for diffs], Sun Oct 25 22:11:34 2015 UTC (8 years, 7 months ago) by jca
Branch: MAIN
Changes since 1.43: +3 -8 lines
Diff to previous 1.43 (colored)

ansify

Revision 1.43 / (download) - annotate - [select for diffs], Fri Jan 16 06:40:20 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], Fri Jul 4 22:39:31 2014 UTC (9 years, 11 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.41: +7 -10 lines
Diff to previous 1.41 (colored)

malloc+memset -> calloc

from Benjamin Baier (programmer (at) netzbasis.de)

Revision 1.41 / (download) - annotate - [select for diffs], Sun Jun 29 00:58:45 2014 UTC (9 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.40: +2 -1 lines
Diff to previous 1.40 (colored)

If you want <sys/queue.h>, you need to include it.  Don't assume that
<sys/sysctl.h> will pull in the universe (I am working on breaking that
assumption in a gentle fashion)

Revision 1.40 / (download) - annotate - [select for diffs], Thu Oct 17 16:27:48 2013 UTC (10 years, 7 months ago) by bluhm
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

The header file netinet/in_var.h included netinet6/in6_var.h.  This
created a bunch of useless dependencies.  Remove this implicit
inclusion and do an explicit #include <netinet6/in6_var.h> when it
is needed.
OK mpi@ henning@

Revision 1.39 / (download) - annotate - [select for diffs], Sat Jun 1 21:57:12 2013 UTC (11 years ago) by brad
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.38: +5 -5 lines
Diff to previous 1.38 (colored)

Remove (char *) casts as agetstr() returns char *.

Pointed out by bluhm@ Ok bluhm@ florian@

Revision 1.38 / (download) - annotate - [select for diffs], Sat Jun 1 01:30:53 2013 UTC (11 years ago) by brad
Branch: MAIN
Changes since 1.37: +91 -1 lines
Diff to previous 1.37 (colored)

Add support for advertising route information (RFC 4191).

From FreeBSD via UMEZAWA Takeshi

ok bluhm@

Revision 1.37 / (download) - annotate - [select for diffs], Wed May 8 06:32:07 2013 UTC (11 years ago) by brad
Branch: MAIN
Changes since 1.36: +2 -2 lines
Diff to previous 1.36 (colored)

Replace use of strncpy with memcpy. Previous code used strncpy on data
that is not null-terminated.

From Stephane A. Sezer

ok bluhm@

Revision 1.36 / (download) - annotate - [select for diffs], Wed May 8 06:28:09 2013 UTC (11 years ago) by brad
Branch: MAIN
Changes since 1.35: +11 -9 lines
Diff to previous 1.35 (colored)

Minor style cleanups.

From Stephane A. Sezer

ok bluhm@

Revision 1.35 / (download) - annotate - [select for diffs], Wed May 8 06:26:05 2013 UTC (11 years ago) by brad
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

Fix a comparison when building a packet with DNS search lists.

From Stephane A. Sezer

ok bluhm@

Revision 1.34 / (download) - annotate - [select for diffs], Wed May 8 06:24:44 2013 UTC (11 years ago) by brad
Branch: MAIN
Changes since 1.33: +7 -3 lines
Diff to previous 1.33 (colored)

Correctly compute packet size when including DNS search lists.

From Stephane A. Sezer

ok bluhm@

Revision 1.33 / (download) - annotate - [select for diffs], Tue Apr 30 12:30:40 2013 UTC (11 years, 1 month ago) by florian
Branch: MAIN
Changes since 1.32: +1 -2 lines
Diff to previous 1.32 (colored)

- replace TIMEVAL_* function/macros with macros from sys/time.h
- replace insque(3) with SLIST from queue(3)
- with that, rewrite rtadvd_check_timer() logic to avoid
  timeval {0x7fffffff, 0x7fffffff}

test/ok sthen@

Revision 1.32 / (download) - annotate - [select for diffs], Tue Apr 30 12:29:04 2013 UTC (11 years, 1 month ago) by florian
Branch: MAIN
Changes since 1.31: +5 -5 lines
Diff to previous 1.31 (colored)

move variables to type time_t; fix format strings

test/ok sthen@

Revision 1.31 / (download) - annotate - [select for diffs], Sun Mar 17 00:38:29 2013 UTC (11 years, 2 months ago) by brad
Branch: MAIN
Changes since 1.30: +1 -5 lines
Diff to previous 1.30 (colored)

Add the router preference defines to the icmp6.h header and remove the
defines that were part of rtadvd's code.

ok bluhm@

Revision 1.30 / (download) - annotate - [select for diffs], Wed Sep 5 05:52:10 2012 UTC (11 years, 8 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.29: +3 -2 lines
Diff to previous 1.29 (colored)

don't truncate a pointer to int, before checking the low bits -- use uintptr_t
from UMEZAWA Takeshi

Revision 1.29 / (download) - annotate - [select for diffs], Mon Jul 9 08:55:19 2012 UTC (11 years, 10 months ago) by phessler
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored)

Use size_t for the length variable

reminded by Brad, and lteo@

Revision 1.28 / (download) - annotate - [select for diffs], Sun Jul 8 10:46:00 2012 UTC (11 years, 10 months ago) by phessler
Branch: MAIN
Changes since 1.27: +178 -1 lines
Diff to previous 1.27 (colored)

Add support for advertising dns servers and search paths in router
advertisements, according to RFC 6106.

original diff from Stephane A. Sezer on tech@, many thanks!

OK phessler@, todd@

Revision 1.27 / (download) - annotate - [select for diffs], Sun Jul 8 09:30:03 2012 UTC (11 years, 10 months ago) by phessler
Branch: MAIN
Changes since 1.26: +2 -2 lines
Diff to previous 1.26 (colored)

Add noifprefix, an option to send an RA with no prefix information.

From Stephane A. Sezer, many thanks!

OK phessler@, jasper@

Revision 1.26 / (download) - annotate - [select for diffs], Wed Apr 23 10:17:50 2008 UTC (16 years, 1 month ago) by pyr
Branch: MAIN
CVS Tags: 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, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4
Changes since 1.25: +11 -14 lines
Diff to previous 1.25 (colored)

Replace handrolled lists with SLISTs or TAILQs.
Timers remain and will be handled later.

Revision 1.25 / (download) - annotate - [select for diffs], Mon Apr 21 20:40:55 2008 UTC (16 years, 1 month ago) by rainer
Branch: MAIN
Changes since 1.24: +91 -145 lines
Diff to previous 1.24 (colored)

Clean up logging by introducing the logging API used in
other daemons and clean up the command line options.
For details, see rtadvd(8).

ok bluhm@, pyr@

Revision 1.24 / (download) - annotate - [select for diffs], Sun Apr 20 11:36:48 2008 UTC (16 years, 1 month ago) by rainer
Branch: MAIN
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

Take failed system calls more serious than LOG_INFO.
This is mainly in preparation for more changes to logging.

Ok bluhm@, pyr@

Revision 1.23 / (download) - annotate - [select for diffs], Wed Mar 22 10:49:17 2006 UTC (18 years, 2 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

Add additional limit check to ensure that we do not overflow pp->prefix
while masking the prefix. Fix from itojun@. OK dhartmei@

Revision 1.22 / (download) - annotate - [select for diffs], Wed Jun 18 02:26:58 2003 UTC (20 years, 11 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9, OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.21: +108 -130 lines
Diff to previous 1.21 (colored)

relax config syntax; addrs#x is not needed any more.  millert ok

Revision 1.21 / (download) - annotate - [select for diffs], Wed Jul 10 21:14:40 2002 UTC (21 years, 10 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.20: +3 -4 lines
Diff to previous 1.20 (colored)

sync w/kame (style)

Revision 1.20 / (download) - annotate - [select for diffs], Wed Jul 10 18:08:11 2002 UTC (21 years, 10 months ago) by todd
Branch: MAIN
Changes since 1.19: +7 -1 lines
Diff to previous 1.19 (colored)

check malloc return; from Chad Loder <cloder@acm.org>
ok me, henning@

Revision 1.19 / (download) - annotate - [select for diffs], Sat Jun 15 02:52:10 2002 UTC (21 years, 11 months ago) by itojun
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

remove redundant arg to syslog()   netbsd-current via kame

Revision 1.18 / (download) - annotate - [select for diffs], Mon Jun 10 19:57:35 2002 UTC (21 years, 11 months ago) by espie
Branch: MAIN
Changes since 1.17: +38 -38 lines
Diff to previous 1.17 (colored)

Kill __FUNCTION__.
ok itojun@

Revision 1.17 / (download) - annotate - [select for diffs], Sun Jun 9 02:15:54 2002 UTC (21 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

strchr() instead of index()

Revision 1.16 / (download) - annotate - [select for diffs], Sat Jun 8 18:11:13 2002 UTC (21 years, 11 months ago) by itojun
Branch: MAIN
Changes since 1.15: +9 -1 lines
Diff to previous 1.15 (colored)

do not use deprecated ioctls

Revision 1.15 / (download) - annotate - [select for diffs], Wed May 29 14:34:05 2002 UTC (22 years ago) by itojun
Branch: MAIN
Changes since 1.14: +149 -197 lines
Diff to previous 1.14 (colored)

KNF, strlcpy, cleanups from kame

Revision 1.14 / (download) - annotate - [select for diffs], Sat Feb 16 21:28:08 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.13: +4 -4 lines
Diff to previous 1.13 (colored)

Part one of userland __P removal.  Done with a simple regexp with some minor hand editing to make comments line up correctly.  Another pass is forthcoming that handles the cases that could not be done automatically.

Revision 1.13 / (download) - annotate - [select for diffs], Sun Jun 3 09:27:31 2001 UTC (23 years ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored)

avoid integer overflow on lifetime value.  sync with kame

Revision 1.12 / (download) - annotate - [select for diffs], Mon Feb 5 06:05:08 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.11: +8 -8 lines
Diff to previous 1.11 (colored)

typo.  ntohl -> htonl.  sync with kame

Revision 1.11 / (download) - annotate - [select for diffs], Sun Feb 4 06:22:05 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.10: +38 -36 lines
Diff to previous 1.10 (colored)

avoid infinite loop when -s is specified (select loop mistake).
make agetent() 32bit clean.  KAME PR 127.
disable -R (router renumbering receiver).  sync with kame.

Revision 1.10 / (download) - annotate - [select for diffs], Tue Jan 23 15:36:40 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.9: +5 -4 lines
Diff to previous 1.9 (colored)

make sure to initialize prefix information data before use.  sync with kame

Revision 1.9 / (download) - annotate - [select for diffs], Sun Jan 21 15:11:18 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.8: +2 -78 lines
Diff to previous 1.8 (colored)

do not intsall rtadvd.conf into /etc, it is not required to use it
(rtadvd will derive the configuration from kernel settings).

make it clearer that rtadvd.conf is not necessary, in manpage.

sync with kame.

Revision 1.8 / (download) - annotate - [select for diffs], Mon Jan 15 11:06:24 2001 UTC (23 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.7: +177 -7 lines
Diff to previous 1.7 (colored)

sync with latest kame tree.
- reduce chances for signal handler rae condition
- decrease chances for misconfiguration
- feedbacks from router renumbering protocol bakeoff
- cleanups related to mtu handling

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jul 6 10:14:46 2000 UTC (23 years, 11 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

sync with router renumber struct decl change.
more logs.  make it very sure to close temporary socket.

Revision 1.6 / (download) - annotate - [select for diffs], Tue May 23 11:23:22 2000 UTC (24 years ago) by itojun
Branch: MAIN
Changes since 1.5: +8 -3 lines
Diff to previous 1.5 (colored)

sync with latest kame.
- weaken logging priority for /etc/resolv.conf open failure
- gather stats, emit stats by SIGUSR1
- use SIOCGIFMTU to get interface MTU (just a matter of #ifdef)
From: "Todd T. Fries" <todd@fries.net>

Revision 1.5 / (download) - annotate - [select for diffs], Mon Mar 13 06:16:11 2000 UTC (24 years, 2 months ago) by itojun
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.4: +107 -9 lines
Diff to previous 1.4 (colored)

bring in latest rtadvd source from kame.
this fixes unclosed file descriptor in router renumbering case.

Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 8 05:34:45 2000 UTC (24 years, 3 months ago) by itojun
Branch: MAIN
Changes since 1.3: +3 -3 lines
Diff to previous 1.3 (colored)

don't include netinet6/{icmp6,ip6}.h for rfc2292 conformance.

Revision 1.3 / (download) - annotate - [select for diffs], Wed Feb 2 04:10:37 2000 UTC (24 years, 4 months ago) by itojun
Branch: MAIN
Changes since 1.2: +2 -3 lines
Diff to previous 1.2 (colored)

add -R flag (accept router renumbering).  this makes rtadvd to
take the safer side (router renumbering requires certain ipsec setup).
die gracefully on SIGTERM.

Revision 1.2 / (download) - annotate - [select for diffs], Sat Dec 11 10:33:28 1999 UTC (24 years, 5 months ago) by itojun
Branch: MAIN
Changes since 1.1: +2 -0 lines
Diff to previous 1.1 (colored)

enable rtadvd in usr.sbin/Makefile.
rcsid police on usr.sbin/rtadvd.
add sample config into etc/rtadvd.conf.
add files into distrib/sets/list.

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sat Dec 11 10:23:29 1999 UTC (24 years, 5 months ago) by itojun
Branch: KAME
CVS Tags: kame_19991211
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

router advertisement daemon, from KAME

Revision 1.1 / (download) - annotate - [select for diffs], Sat Dec 11 10:23:29 1999 UTC (24 years, 5 months ago) by itojun
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.