History log of /src/usr.sbin/rarpd |
Revision | Date | Author | Comments |
1.16 | 03-Jun-2023 |
lukem | bsd.own.mk: rename GCC_NO_* to CC_WNO_*
Rename compiler-warning-disable variables from GCC_NO_warning to CC_WNO_warning where warning is the full warning name as used by the compiler.
GCC_NO_IMPLICIT_FALLTHRU is CC_WNO_IMPLICIT_FALLTHROUGH
Using the convention CC_compilerflag, where compilerflag is based on the full compiler flag name.
|
1.15 | 13-Oct-2019 |
mrg | introduce some common variables for use in GCC warning disables:
GCC_NO_FORMAT_TRUNCATION -Wno-format-truncation (GCC 7/8) GCC_NO_STRINGOP_TRUNCATION -Wno-stringop-truncation (GCC 8) GCC_NO_STRINGOP_OVERFLOW -Wno-stringop-overflow (GCC 8) GCC_NO_CAST_FUNCTION_TYPE -Wno-cast-function-type (GCC 8)
use these to turn off warnings for most GCC-8 complaints. many of these are false positives, most of the real bugs are already commited, or are yet to come.
we plan to introduce versions of (some?) of these that use the "-Wno-error=" form, which still displays the warnings but does not make it an error, and all of the above will be re-considered as either being "fix me" (warning still displayed) or "warning is wrong."
|
1.14 | 10-Aug-2012 |
joerg | branches: 1.14.32; Remove many HAVE_GCC || HAVE_PCC conditionals as the options also apply to Clang. Add a few cases of HAVE_LLVM for -fno-strict-aliasing.
|
1.13 | 20-Jun-2011 |
mrg | branches: 1.13.2; remove most of the remaining HAVE_GCC tests that are always true in the modern world.
|
1.12 | 29-Aug-2008 |
gmcgarry | branches: 1.12.18; Wrap compiler-specific flags with HAVE_GCC and HAVE_PCC as necessary. Add a few flags for PCC.
|
1.11 | 28-May-2007 |
tls | branches: 1.11.12; Add new Makefile knob, USE_FORT, which extends USE_SSP by turning on the FORTIFY_SOURCE feature of libssp, thus checking the size of arguments to various string and memory copy and set functions (as well as a few system calls and other miscellany) where known at function entry. RedHat has evidently built all "core system packages" with this option for some time.
This option should be used at the top of Makefiles (or Makefile.inc where this is used for subdirectories) but after any setting of LIB.
This is only useful for userland code, and cannot be used in libc or in any code which includes the libc internals, because it overrides certain libc functions with macros. Some effort has been made to make USE_FORT=yes work correctly for a full-system build by having the bsd.sys.mk logic disable the feature where it should not be used (libc, libssp iteself, the kernel) but no attempt has been made to build the entire system with USE_FORT and doing so will doubtless expose numerous bugs and misfeatures.
Adjust the system build so that all programs and libraries that are setuid, directly handle network data (including serial comm data), perform authentication, or appear likely to have (or have a history of having) data-driven bugs (e.g. file(1)) are built with USE_FORT=yes by default, with the exception of libc, which cannot use USE_FORT and thus uses only USE_SSP by default. Tested on i386 with no ill results; USE_FORT=no per-directory or in a system build will disable if desired.
|
1.10 | 11-May-2006 |
mrg | sprinkle some -fno-strict-aliasing and -Wno-pointer-sign with GCC4.
|
1.9 | 13-Apr-2000 |
itojun | use getifaddrs to avoid alignment constraints in SIOCGIFCONF. (do you have PR # for this? >lukem)
|
1.8 | 06-Jun-1999 |
thorpej | Use pidfile(3).
|
1.7 | 24-Nov-1997 |
is | If we answer a RARP request, also add the mapping to the local arp cache. [This was broken when the 4.4BSD ARP table changes were done, and never repaired.] Inspired by Jarle Greipsland, PR 4531; code stolen from arp.a and cleaned up (mostly removing global variables). XXX As pointed out in the PR, this should be in some library (libutil?), to be usable by other servers like bootpd and dhcpd.
|
1.6 | 25-Oct-1997 |
lukem | use CPPFLAGS instead of CFLAGS
|
1.5 | 21-Jun-1997 |
lukem | branches: 1.5.2; remove unnecessary CFLAGS+=-I${.CURDIR} and SRCS=rarpd.c
|
1.4 | 17-Nov-1995 |
thorpej | New-style RCS id.
|
1.3 | 01-Sep-1995 |
thorpej | Make the "/tftpboot/<client-ip-address>" requirement conditional on -DREQUIRE_TFTPBOOT and disable it by default.
|
1.2 | 22-Dec-1994 |
cgd | specify man pages the new way.
|
1.1 | 16-Dec-1993 |
deraadt | original from LBL (part of the tcpdump distrib) SIOCGIFCONF fixup by Roland McGrath <roland@frob.com>
|
1.5.2.2 | 24-Nov-1997 |
mellon | Pull rev 1.7 up from trunk (is)
|
1.5.2.1 | 08-Nov-1997 |
lukem | sync with trunk (approved by thorpej)
|
1.11.12.1 | 18-Sep-2008 |
wrstuden | Sync with wrstuden-revivesa-base-2.
|
1.12.18.1 | 23-Jun-2011 |
cherry | Catchup with rmind-uvmplock merge.
|
1.13.2.1 | 30-Oct-2012 |
yamt | sync with head
|
1.14.32.1 | 13-Apr-2020 |
martin | Mostly merge changes from HEAD upto 20200411
|
1.12 | 12-Apr-2017 |
roy | Use RO_MSGFILTER.
|
1.11 | 04-Apr-2016 |
ozaki-r | branches: 1.11.2; 1.11.4; Separate nexthop caches from the routing table
By this change, nexthop caches (IP-MAC address pair) are not stored in the routing table anymore. Instead nexthop caches are stored in each network interface; we already have lltable/llentry data structure for this purpose. This change also obsoletes the concept of cloning/cloned routes. Cloned routes no longer exist while cloning routes still exist with renamed to connected routes.
Noticeable changes are: - Nexthop caches aren't listed in route show/netstat -r - sysctl(NET_RT_DUMP) doesn't return them - If RTF_LLDATA is specified, it returns nexthop caches - Several definitions of routing flags and messages are removed - RTF_CLONING, RTF_XRESOLVE, RTF_LLINFO, RTF_CLONED and RTM_RESOLVE - RTF_CONNECTED is added - It has the same value of RTF_CLONING for backward compatibility - route's -xresolve, -[no]cloned and -llinfo options are removed - -[no]cloning remains because it seems there are users - -[no]connected is introduced and recommended to be used instead of -[no]cloning - route show/netstat -r drops some flags - 'L' and 'c' are not seen anymore - 'C' now indicates a connected route - Gateway value of a route of an interface address is now not a L2 address but "link#N" like a connected (cloning) route - Proxy ARP: "arp -s ... pub" doesn't create a route
You can know details of behavior changes by seeing diffs under tests/.
Proposed on tech-net and tech-kern: http://mail-index.netbsd.org/tech-net/2016/03/11/msg005701.html
|
1.10 | 03-Dec-2014 |
christos | c99 initializers
|
1.9 | 30-Aug-2011 |
joerg | static + __printflike + __dead
|
1.8 | 18-Apr-2009 |
lukem | Fix WARNS=4 issues (-Wshadow -Wsign-compare -Wextra)
|
1.7 | 21-Jul-2008 |
lukem | branches: 1.7.6; Remove the \n and tabs from the __COPYRIGHT() strings. Tweak to use a consistent format.
|
1.6 | 07-Aug-2003 |
agc | branches: 1.6.32; Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22366, verified by myself.
|
1.5 | 08-Apr-2003 |
petrov | Fix alignment for socket addresses in routing socket requests for LP64 machines. Addresses port-alpha/11089. Reviewed by thorpej.
|
1.4 | 14-Jul-2002 |
wiz | ANSIfy. Remove ifndef __STDC__. Remove __P(). Remove register.
|
1.3 | 11-Feb-2000 |
abs | We need to close and open the socket to prevent routing updates building up such that when we send our message we never see our reply (and hang) Fix taken (modified) from PR 7508
|
1.2 | 17-Jan-1998 |
christos | branches: 1.2.2; PR/4835: Izumi Tsutsui: rarpd does not set the link level address length. While there change "6" to "ETHER_ADDR_LEN"
|
1.1 | 24-Nov-1997 |
is | branches: 1.1.2; If we answer a RARP request, also add the mapping to the local arp cache. [This was broken when the 4.4BSD ARP table changes were done, and never repaired.] Inspired by Jarle Greipsland, PR 4531; code stolen from arp.a and cleaned up (mostly removing global variables). XXX As pointed out in the PR, this should be in some library (libutil?), to be usable by other servers like bootpd and dhcpd.
|
1.1.2.2 | 08-Oct-1998 |
cgd | pull up rev 1.2 from trunk (christos).
|
1.1.2.1 | 24-Nov-1997 |
cgd | file mkarp.c was added on branch netbsd-1-3 on 1998-10-08 16:00:47 +0000
|
1.2.2.1 | 12-Feb-2000 |
he | Pull up revision 1.3 (requested by abs): Stop rarpd from hanging if too many routing updates come in between requests, also improve debug output slightly. Fixes PR#7508.
|
1.6.32.1 | 18-Sep-2008 |
wrstuden | Sync with wrstuden-revivesa-base-2.
|
1.7.6.1 | 13-May-2009 |
jym | Sync with HEAD.
Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
|
1.11.4.1 | 21-Apr-2017 |
bouyer | Sync with HEAD
|
1.11.2.1 | 26-Apr-2017 |
pgoyette | Sync with HEAD
|
1.2 | 14-Jul-2002 |
wiz | ANSIfy. Remove ifndef __STDC__. Remove __P(). Remove register.
|
1.1 | 24-Nov-1997 |
is | branches: 1.1.2; If we answer a RARP request, also add the mapping to the local arp cache. [This was broken when the 4.4BSD ARP table changes were done, and never repaired.] Inspired by Jarle Greipsland, PR 4531; code stolen from arp.a and cleaned up (mostly removing global variables). XXX As pointed out in the PR, this should be in some library (libutil?), to be usable by other servers like bootpd and dhcpd.
|
1.1.2.2 | 24-Nov-1997 |
is | If we answer a RARP request, also add the mapping to the local arp cache. [This was broken when the 4.4BSD ARP table changes were done, and never repaired.] Inspired by Jarle Greipsland, PR 4531; code stolen from arp.a and cleaned up (mostly removing global variables). XXX As pointed out in the PR, this should be in some library (libutil?), to be usable by other servers like bootpd and dhcpd.
|
1.1.2.1 | 24-Nov-1997 |
is | file mkarp.h was added on branch netbsd-1-3 on 1997-11-24 18:43:13 +0000
|
1.2 | 06-Jun-1999 |
thorpej | Use pidfile(3).
|
1.1 | 23-Apr-1998 |
mrg | branches: 1.1.2; support /var/run/rarpd.pid
|
1.1.2.2 | 22-Sep-1998 |
cgd | Pull up 1.1 (fair; counterpart to pull up of rarpd.c rev 1.25 of that happened in rev 1.21.2.3, this file is necessary for that pullup to work)
|
1.1.2.1 | 23-Apr-1998 |
cgd | file pathnames.h was added on branch netbsd-1-3 on 1998-09-22 18:50:47 +0000
|
1.14 | 21-Dec-2016 |
abhinav | Add xref for ethers(5) and hosts(5). Remove extra white space in the middle of a sentence. Use more markup for AUTHORS section.
ok wiz@
|
1.13 | 11-Mar-2009 |
joerg | branches: 1.13.28; Fix preamble
|
1.12 | 21-Jul-2008 |
martin | branches: 1.12.6; UBC license does not require an advertizing clause any more - this files where probably missed in the initial sweep due to strange formatting (last clause not explicitly numbered).
FreeBSD converted them (rev. 1.21 pf rarpd.8 and rev 1.41 of rarpd.c in their repository), nearly four years ago.
|
1.11 | 21-Oct-2002 |
grant | branches: 1.11.32; Fix date typo, Oct 27 -> 17.
While it would be nice to be able to add features ahead of time, it is not possible yet :)
|
1.10 | 17-Oct-2002 |
thorpej | Allow more than one interface to be specified on the command line.
|
1.9 | 02-Feb-2002 |
wiz | branches: 1.9.2; Drop a comma.
|
1.8 | 19-Jan-2002 |
wiz | Whitespace nits.
|
1.7 | 15-Apr-1998 |
mrg | add a -l (logging) switch.
|
1.6 | 17-Oct-1997 |
lukem | branches: 1.6.2; WARNSify
|
1.5 | 21-Jun-1997 |
lukem | * use MAXHOSTNAMELEN+1 instead of 256 * don't use LOG_CONS - it's unnecessary and spams the console if syslogd fails (a bad thing, really)
From [misc/873] by Giles Lean <giles@nemeton.com.au>: * explain why the name lookup failed * always send debug() via syslog(3) (unlike the PR, which added a -s flag) * enhance the man page a bit (even in the commented out section which is only relevant to the -DREQUIRE_TFTPBOOT case
|
1.4 | 17-Nov-1995 |
thorpej | New-style RCS id.
|
1.3 | 01-Sep-1995 |
thorpej | Make the "/tftpboot/<client-ip-address>" requirement conditional on -DREQUIRE_TFTPBOOT and disable it by default.
|
1.2 | 14-Jan-1994 |
jtc | Fix spelling errors
|
1.1 | 16-Dec-1993 |
deraadt | original from LBL (part of the tcpdump distrib) SIOCGIFCONF fixup by Roland McGrath <roland@frob.com>
|
1.6.2.1 | 29-Jul-1998 |
mellon | Pull up 1.7 to match rarpd.c (fair)
|
1.9.2.1 | 21-Oct-2002 |
lukem | Pull up revision 1.10 (requested by thorpej in ticket #920): Allow more than one interface to be specified on the command line.
|
1.11.32.1 | 18-Sep-2008 |
wrstuden | Sync with wrstuden-revivesa-base-2.
|
1.12.6.1 | 13-May-2009 |
jym | Sync with HEAD.
Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
|
1.13.28.1 | 07-Jan-2017 |
pgoyette | Sync with HEAD. (Note that most of these changes are simply $NetBSD$ tag issues.)
|
1.61 | 26-Mar-2023 |
andvar | fix various typos in documentation, comments and sysctl device description. mainly aion -> ation and inlude -> include.
|
1.60 | 13-Feb-2018 |
martin | Adapt to ar_tha() changes in if_arp.h rev1.31.
|
1.59 | 30-Aug-2011 |
joerg | static + __printflike + __dead
|
1.58 | 18-Apr-2009 |
lukem | Fix WARNS=4 issues (-Wshadow -Wsign-compare -Wextra)
|
1.57 | 21-Jul-2008 |
lukem | branches: 1.57.6; Remove the \n and tabs from the __COPYRIGHT() strings. Tweak to use a consistent format.
|
1.56 | 21-Jul-2008 |
martin | UBC license does not require an advertizing clause any more - this files where probably missed in the initial sweep due to strange formatting (last clause not explicitly numbered).
FreeBSD converted them (rev. 1.21 pf rarpd.8 and rev 1.41 of rarpd.c in their repository), nearly four years ago.
|
1.55 | 12-May-2006 |
mrg | branches: 1.55.20; since ar_tha() can return NULL, don't pass it directly to functions that expect real addresses. explicitly KASSERT() that it is not NULL in the kernel and just avoid using it userland.
(the kernel could be more defensive about this, but, until now it would have just crashed anyway.)
|
1.54 | 01-Dec-2004 |
christos | remove backwards compatibility with non-cloning bpf.
|
1.53 | 01-Dec-2004 |
christos | Use /dev/bpf, if _PATH_BPF is defined.
|
1.52 | 07-Sep-2004 |
jrf | Replaced strncpy with strlcpy. Thanks to Peter Postma who pointed them our in PR #25762. Approved by christos@NetBSD.org.
|
1.51 | 12-May-2004 |
tron | Fix handling of interface aliases if "rarpd" is not invoked with "-a".
|
1.50 | 10-Apr-2004 |
darrenr | With recent changes to BPF, pushing the default buffer size to 1MB, running a bunch of small daemons that seem small packet flows can easily chew up significant kernel memory (each BPF device opened takes 2*buffersize of wired memory.) In each of these applications, add code to set the buffer size to 32k before setting the interface.
|
1.49 | 13-Jul-2003 |
itojun | branches: 1.49.2; use bounded string op
|
1.48 | 15-May-2003 |
itojun | assume presense of getifaddrs(3).
|
1.47 | 21-Oct-2002 |
lukem | tweak usage now that multiple interfaces are supported...
|
1.46 | 17-Oct-2002 |
thorpej | Allow more than one interface to be specified on the command line.
|
1.45 | 14-Jul-2002 |
wiz | ANSIfy. Remove ifndef __STDC__. Remove __P(). Remove register.
|
1.44 | 11-Jan-2002 |
itojun | branches: 1.44.2; daemon(3) has to be called prior to file descriptor initialization.
|
1.43 | 24-Sep-2001 |
wiz | va_{start,end} audit: Make sure that each va_start has one and only one matching va_end, especially in error cases. If the va_list is used multiple times, do multiple va_starts/va_ends. If a function gets va_list as argument, don't let it use va_end (since it's the callers responsibility).
Improved by comments from enami and christos -- thanks!
Heimdal/krb4/KAME changes already fed back, rest to follow.
Inspired by, but not not based on, OpenBSD.
|
1.42 | 11-Jan-2001 |
enami | Kill no longer used variable decl.
|
1.41 | 11-Jan-2001 |
lukem | use explicit name rather than __progname in openlog
|
1.40 | 20-Nov-2000 |
is | With RARP, MAC asks, and IP answers. Fixes PR 11330 by Thilo Manske, who also provided the fix (modulo formatting).
|
1.39 | 11-Oct-2000 |
is | More format string cleanups by sommerfeld.
|
1.38 | 30-Aug-2000 |
abs | Include the fact we're making replies in the debug() output.
|
1.37 | 13-Apr-2000 |
itojun | branches: 1.37.4; use getifaddrs to avoid alignment constraints in SIOCGIFCONF. (do you have PR # for this? >lukem)
|
1.36 | 11-Feb-2000 |
abs | Indicate on which interface a packet has been received when debugging
|
1.35 | 07-Feb-2000 |
nathanw | Copy struct ifreq returned by SIOGIFCONF to ensure correct alignment.
|
1.34 | 26-Sep-1999 |
kleink | Need <sys/param.h> for MAXHOSTNAMELEN.
|
1.33 | 06-Jun-1999 |
thorpej | branches: 1.33.2; Use pidfile(3).
|
1.32 | 13-Feb-1999 |
thorpej | branches: 1.32.2; Fix a logic error which would have caused a NULL pointer dereference if the client's IP address wasn't found on the interface's network.
|
1.31 | 11-Jan-1999 |
kleink | In userland, pull in <errno.h> instead of <sys/errno.h> for the declaration of errno.
|
1.30 | 06-Oct-1998 |
fvdl | Shut up gcc.
|
1.29 | 06-Oct-1998 |
matt | Teach rarpd about interface aliases.
|
1.28 | 29-Sep-1998 |
mrg | use daemon(). remove spurious \n from rarperr() call
|
1.27 | 29-Jul-1998 |
fair | usage & comment string patch, per PR#5859
|
1.26 | 13-Jul-1998 |
mrg | KNF. be safe with buffers. use setsid().
|
1.25 | 23-Apr-1998 |
mrg | support /var/run/rarpd.pid
|
1.24 | 15-Apr-1998 |
mrg | add a -l (logging) switch.
|
1.23 | 23-Mar-1998 |
fair | These changes from PR#3190 (second set of diffs) deal with rarpd refusing to work in "-a" mode on a host with more than one Ethernet, and at least one non-ethernet device. Frankly, the interface initialization loop is badly structured and should be rewritten, and these changes do nothing to fix that. However, they oughta do the requested job, quick & dirty.
|
1.22 | 24-Nov-1997 |
is | If we answer a RARP request, also add the mapping to the local arp cache. [This was broken when the 4.4BSD ARP table changes were done, and never repaired.] Inspired by Jarle Greipsland, PR 4531; code stolen from arp.a and cleaned up (mostly removing global variables). XXX As pointed out in the PR, this should be in some library (libutil?), to be usable by other servers like bootpd and dhcpd.
|
1.21 | 18-Oct-1997 |
lukem | branches: 1.21.2; use memcmp/memset/memmove instead of bcmp/bzero/bcopy
|
1.20 | 17-Oct-1997 |
lukem | getopt returns -1 not EOF
|
1.19 | 17-Oct-1997 |
lukem | WARNSify
|
1.18 | 21-Jun-1997 |
lukem | * use MAXHOSTNAMELEN+1 instead of 256 * don't use LOG_CONS - it's unnecessary and spams the console if syslogd fails (a bad thing, really)
From [misc/873] by Giles Lean <giles@nemeton.com.au>: * explain why the name lookup failed * always send debug() via syslog(3) (unlike the PR, which added a -s flag) * enhance the man page a bit (even in the commented out section which is only relevant to the -DREQUIRE_TFTPBOOT case
|
1.17 | 23-Mar-1997 |
cgd | fix some u_long vs. u_int32_t bogons in uses of nameserver lookup results.
|
1.16 | 15-Mar-1997 |
is | New ARP system, supports IPv4 over any hardware link.
Some of the stuff (e.g., rarpd, bootpd, dhcpd etc., libsa) still will only support Ethernet. Tcpdump itself should be ok, but libpcap needs lot of work.
For the detailed change history, look at the commit log entries for the is-newarp branch.
|
1.15 | 10-Mar-1997 |
is | branches: 1.15.2; back out previoius commit---wasn't intended for The Trunk
|
1.14 | 10-Mar-1997 |
is | adapt to new ARP code. still needs work for non-Ethernet.
|
1.13 | 18-Jan-1997 |
mikel | cast ether_ntohost() argument to proper type; from Klaus Klein <kleink@layla.inka.de>
|
1.12 | 21-Mar-1996 |
jtc | Be pedantic, main() returns int in C.
|
1.11 | 01-Feb-1996 |
mycroft | If __FreeBSD__, don't swap the type field in the Ethernet II header.
|
1.10 | 31-Jan-1996 |
hpeyerl | interface aliases don't count as individual interfaces and hence don't need a seperate bpf. Someone should decide whether to tell netstat about this.
|
1.9 | 17-Nov-1995 |
thorpej | New-style RCS id.
|
1.8 | 01-Sep-1995 |
thorpej | branches: 1.8.2; Make the "/tftpboot/<client-ip-address>" requirement conditional on -DREQUIRE_TFTPBOOT and disable it by default.
|
1.7 | 25-May-1994 |
mycroft | Look up the ether addresses of interfaces *correctly*, and just ditch SIOCSARP altogether.
|
1.6 | 14-May-1994 |
cgd | rename constants
|
1.5 | 30-Mar-1994 |
cgd | kill bad casts
|
1.4 | 01-Mar-1994 |
cgd | put ar_hrd in network byte order. from Christos Zoulas <christos@deshaw.com>
|
1.3 | 24-Jan-1994 |
deraadt | bpf writes for ethernet take a network byte order ether_type
|
1.2 | 12-Jan-1994 |
deraadt | remove the faster replacement for inet_ntoa because the stupid thing is byte order dependent.
|
1.1 | 16-Dec-1993 |
deraadt | original from LBL (part of the tcpdump distrib) SIOCGIFCONF fixup by Roland McGrath <roland@frob.com>
|
1.8.2.1 | 23-Feb-1996 |
hpeyerl | interface aliases don't count as individual interfaces and hence don't need a seperate bpf. Someone should decide whether to tell netstat about this.
|
1.15.2.2 | 10-Mar-1997 |
is | Convert this to use the new ARP code (mostly header files/structure definitions). Needs still work for non-Ethernet.
|
1.15.2.1 | 10-Mar-1997 |
is | file rarpd.c was added on branch is-newarp on 1997-03-10 20:00:55 +0000
|
1.21.2.3 | 29-Jul-1998 |
mellon | Pull up 1.24-1.27 (fair) (PR#5859)
|
1.21.2.2 | 08-May-1998 |
mycroft | Pull up 1.23, per request of mycroft.
|
1.21.2.1 | 24-Nov-1997 |
mellon | Pull rev 1.22 up from trunk (is)
|
1.32.2.2 | 19-Oct-2000 |
he | Pull up revision 1.39 (requested by he): Format string cleanup.
|
1.32.2.1 | 12-Feb-2000 |
he | Pull up revision 1.36 (requested by abs): Stop rarpd from hanging if too many routing updates come in between requests, also improve debug output slightly. Fixes PR#7508.
|
1.33.2.1 | 27-Dec-1999 |
wrstuden | Pull up to last week's -current.
|
1.37.4.3 | 03-Feb-2001 |
he | Pull up revision 1.40 (requested by is): Diagnostic message was the wrong way round. Fixes PR#11330.
|
1.37.4.2 | 17-Oct-2000 |
tv | Pullup usr.sbin string format fixes [is]. See "cvs log" for explicit revision numbers per file, from sommerfeld.
|
1.37.4.1 | 30-Aug-2000 |
abs | Include the fact we're making replies in debug() output. Pullup revision 1.38, approved by thorpej
|
1.44.2.1 | 21-Oct-2002 |
lukem | Pull up revision 1.46 (requested by thorpej in ticket #920): Allow more than one interface to be specified on the command line.
|
1.49.2.2 | 22-May-2004 |
he | Pull up revision 1.51 (requested by tron in ticket #323): Fix handling of interface aliases if "rarpd" is not invoked with "-a".
|
1.49.2.1 | 21-Apr-2004 |
jmc | Pullup rev 1.50 (requested by darrenr in ticket #167)
Reduce bpf buffer to 32k from 1M to reduce kernel memory usage from userland binaries. Fix bpf so that select will return for a timeout. Fix the behaviour of BIOCIMMEDIATE. In bpf_mtap(), optimise the calling of bpf_filter() and catchpacket() based on whether or not the entire packet is in one mbuf. Various other bpf fixes, including PR#8674, PR#12170
|
1.55.20.1 | 18-Sep-2008 |
wrstuden | Sync with wrstuden-revivesa-base-2.
|
1.57.6.1 | 13-May-2009 |
jym | Sync with HEAD.
Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
|