summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2006-11-16ignore messages for routing tables other than the main oneHenning Brauer
2006-11-16ignore messages for alternate routing tables for now; from bgpdHenning Brauer
2006-11-16ignore routing messages for alternate tables for now, from bgpdHenning Brauer
2006-11-16for now, make bgpd work with routing table 0 (main one) and ignore routingHenning Brauer
messages for any other tables. real multi-table support is more adventurous (will come tho)
2006-11-16only do the sp swap if requested (the tests now appear to work)Theo de Raadt
2006-11-16more symmetric add support for fpu.Dale Rahn
2006-11-16make RFC2292 -> 3542 transition to automagically happen.Jun-ichiro itojun Hagino
2006-11-15remove double define; dunceor@gmail.comTheo de Raadt
2006-11-15closer to correct, maybeTheo de Raadt
2006-11-15validate response packet more carefully. kame revision 1.109->1.111Jun-ichiro itojun Hagino
2006-11-15a start at a sh4 context switcher (what a bizzare architecture...)Theo de Raadt
2006-11-15when process.sh.S shows up, have the Makefile grok itTheo de Raadt
2006-11-13properly use LDADD and DPADDTheo de Raadt
2006-11-12completely uniform setupMarc Espie
2006-11-12print stuff to the correct file handleMarc Espie
2006-11-12remove reference to PPP_FILTER:Kevin Steves
- there is no PPP_FILTER kernel option - pppd is compiled with -DPPP_FILTER by default ok jmc@
2006-11-11simpler/better progress printMarc Espie
2006-11-11-P option: prepend pkgpath instead of pkgname.Marc Espie
-p option: use the continuation code from OpenBSD::PackingList in a sneaky way, so that we can read all packing-list contents in one go from a make print-plist-contents in /usr/ports. Allows building a located database from the ports tree without needing to build any packages.
2006-11-11pass the right size of the messageMichele Marchetto
OK henning@
2006-11-11Add the bgpd control socket to FILES and use the same .Bl -width as inMichael Knudsen
bgpd(8). ok (and fixing my mistakes because I was sleepy when I mailed out the diff) jmc
2006-11-10Check the correct bits in the control byte.Mats O Jansson
Found by Alexey Dobriyan (adobriyan at gmail dot com) -moj
2006-11-10`elminate' etc. is not really the right way to spell `eliminate'.Michael Knudsen
ok brad
2006-11-10char -> u_char in a few placesHenning Brauer
apparently from Jeff Rizzo <riz@NetBSD.org> via "Thomas E. Spanjaard" <tgen@netphreax.net>, ok claudio
2006-11-10cast to (long long) for %lld printfsHenning Brauer
apparently from Jeff Rizzo <riz@NetBSD.org> via "Thomas E. Spanjaard" <tgen@netphreax.net>, with changes from me (as far as I remember, this is kinda old stuff). claudio ok
2006-11-10In report packet parsing, interpret 0.0.0.0/8 as 0.0.0.0/0.Michele Marchetto
OK norby@ henning@
2006-11-10introduce reference count for struct route_report so it can be shared andMichele Marchetto
freed correctly. OK norby@ henning@
2006-11-10clear lists before deleting neighborMichele Marchetto
OK claudio@ henning@
2006-11-09Properly indicate status of "fib-update"Joel Knight
2006-11-09Properly indicate the state of "fib-update"Joel Knight
ok claudio@
2006-11-08remove another irrelevant reference; ok jmc@Kevin Steves
2006-11-07remove some irrelevant references; spotted by steveskJason McIntyre
ok henning stevesk
2006-11-07zap the stat part related to file type, only keeping the usual modes.Marc Espie
2006-11-07Don't check buf[strlen(buf) - 1] for zero length strings.Ray Lai
OK jaredy@.
2006-11-06fix pasto; only announce restart capability when announcing the restartHenning Brauer
capability is enabled, not when annoucing the refresh capability is enabled... Alex Hunsaker <badalex@gmail.com> ran into that issue
2006-11-06fix proxying on big-endian 64-bit machines, u_long is not the size ofTheo de Raadt
an ip address, that's for sure; pr 5232 arjones@simultan.dyndns.org
2006-11-05warn for any weird stuff in packages.Marc Espie
Namely: - anything that doesn't belong to owner root/bin, group bin/wheel must be annotated in the packing-list. - any file setuid, setgid, writable by others must be annotated in the packing-list. These warnings must be fixed. They will become errors in the near futur.
2006-11-03Revert acpiscan commit. This should have replaced acpidump instead ofMarco Peereboom
being a new tool. My bad. prompted by deraadt.
2006-11-03delete marco bullshitTheo de Raadt
2006-11-03Add Jordan's acpiscan acpi table dump tool. The current tool, acpidump,Marco Peereboom
does not dump all relevant tables and will eventually be deprecated by this. It needs some more cleanup but we need to start getting acpi dumps from the field using this instead of acpidump. Code written by jordan, cleanup by me. ok jordan@
2006-11-03if the nexthop is not reachable through outgoing interface set it toMichele Marchetto
INADDR_ANY. Spotted out by Martin Boehme. OK claudio@ henning@
2006-11-02Check that last character is a newline before truncating; preventsRay Lai
negative index array access. OK moritz@.
2006-11-01Stop the running timer in case a neighbor is deleted. This fixes a crashClaudio Jeker
found by Martin Boehme. ok michele@
2006-11-01Fix copy pasto, use SIGCHLD for the sigchild handler not SIGINT twice.Claudio Jeker
Spotted by janus <at> errornet.de
2006-10-31create a temporary neighbor instead of a permanent one when a request is ↵Michele Marchetto
received
2006-10-31Time is not a secret.Ryan Thomas McBride
Modulate the timer with an MD5 hash of the key to generate the sequence number. Ensure that the most significant bit of the modulated value is 0 to prevent wrapping of the sequence number. ok michele@
2006-10-31Remove dead code; len is always >= 1.Todd C. Miller
Convert a strncpy() to strlcpy() since it is followed by strlcat(). OK marco@ mk@
2006-10-30Now that we have smarter lex and yacc rules, remove redundant linesOtto Moerbeek
from Makefile. ok millert@
2006-10-29Allow braces to fit on a single line if only one or no argument is used.Claudio Jeker
This allows construct like these: area 0.0.0.1 { interface lo0 interface em1 { passive } } From Pierre-Yves Ritschard
2006-10-29Connect ripd and ripctl to the build.Esben Norby
ok claudio@ deraadt@
2006-10-27use clock_gettime(CLOCK_MONOTONIC, ..) to get a monotonically increasingHenning Brauer
time, and make ntpd use that to send the next uery to an ntp peer and the like. this has the advantage that changes to the clock do not interfere with the intervals. for example, when we start on machines without an RTC and the initial settime (-s) kicks in, intervals were strange. idea from amandal@entrisphere.com, this implementation by me tested ckuethe, phessler, mbalmer, ok mbalmer