summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2007-04-21avoid both .libs-* and partial-*. Be a bit forceful about them, as they'reMarc Espie
going to cause problems if they're not cleaned from time to time.
2007-04-21if running a full update, proceed if we can't find some packages.Marc Espie
2007-04-19Use vectorized writes to send routing messages into the kernel instead ofClaudio Jeker
using a static message structure. Similar diffs went into bgpd and ospfd.
2007-04-19Use vectorized writes to send routing messages into the kernel instead ofClaudio Jeker
using a static message structure. This is more flexible and needed if multipath comes into play. looks good henning@
2007-04-19Use iovecs to write routing messages to the socket instead of a staticClaudio Jeker
structure. This gives greater flexibility and solves an upcoming problem with multipath routes. OK norby@
2007-04-17Make "network inet connected" work again. inet and inet6 became keywordsClaudio Jeker
some time ago. OK henning@
2007-04-17document the subtle tweak to Vstat that allows updates to account forMarc Espie
size issues accurately.
2007-04-16Note that watchdogd(8) activates and retriggers a watchdog timer, not onlyMarc Balmer
retriggers.
2007-04-15very minor cleanupMarc Espie
2007-04-15update copyright years, standardize licence.Marc Espie
reword the introduction to the stuff originally from FreeBSD to clarify slightly.
2007-04-15do not rely on side-effects in there.Marc Espie
2007-04-15use autovivificationMarc Espie
2007-04-14no need to go SUPER:: for set_modes.Marc Espie
also call it for devices (even though it's unlikely to be very useful)
2007-04-12add a new relay 'path' action to filter the URL path and arguments.Reyk Floeter
ok pyr@
2007-04-12Before starting to evaluate the redistributon of a route it helps to setClaudio Jeker
the metric to the highest and least preferred possible value else no routes are redistributed. OK norby@
2007-04-11Remove the simplelock argument from vrecycle();Thordur I. Bjornsson
ok pedro@, sturm@
2007-04-11Simplify rde_summary_update(). The route entry has a valid/invalid flagClaudio Jeker
so there is no need to loop over the nexthops and we no longer need to pass the rt_nexthop to the summary LSA generation (a flag is enough). OK norby@ pyr@
2007-04-10Use a larger type to store ``resolution'', so that comparisons againstMiod Vallat
values over 255 are actually meaningful.
2007-04-10Add support for a fourth axis on wsmouse devices, e.g. on the Apple MightMiod Vallat
Mouse. Currently limited to USB mice. Adapted from a diff from Gareth <garf@loveandnature.co.za> on tech@
2007-04-10sort entity typesReyk Floeter
2007-04-10move the decoding of the URL, independent from the node lookups, weReyk Floeter
will need it later.
2007-04-10it is a better idea to handle all enum values in the switch statementReyk Floeter
2007-04-10the relay filter action needs special handling to work correctlyReyk Floeter
2007-04-10privledges -> privilegesMiod Vallat
2007-04-10if vnconfig can't get the info, it should say so, not just print nothing.Ted Unangst
ok grunk pedro
2007-04-10Next step in equal cost multipath support. Make the SPF calculation multipathClaudio Jeker
aware. Both the SPF and RIB trees need additional structures to store the multiple nexthops to the destination but only the first active nexthop is passed to the parent process and used for routing. This is the next thing that needs to be modified. Tested and OK pyr@
2007-04-10spacingMichele Marchetto
2007-04-09Improve the handling of "counting to infinity" mechanism and add an heuristicMichele Marchetto
higly recommended in the rfc. tested by me and OK claudio@
2007-04-08I have an HP LaserJet (P2015dn) whose LPR implementation may not endKevin Steves
the send queue state command stream with '\n'; check for this case and print '\n' if needed. Without this you may see something like: $ lpq queue empty$ ok millert@
2007-04-08remove warning (exiting thru next)Marc Espie
2007-04-07KNF, spaces; ok millert@Kevin Steves
2007-04-07trailing "\n" not needed in fatal(); ok millert@Kevin Steves
2007-04-07tweak previous; ok claudioJason McIntyre
2007-04-07Document the terse format outputs. Additional input by jmc@Claudio Jeker
2007-04-06Implement "bgpctl show neighbor <peer> terse" this will print all statisticsClaudio Jeker
in an easily parseable form. This output can be used to implement SNMP MIBs or rrdtool/mrtg update scripts. OK henning@
2007-04-06Include update statistics in the bgpctl show neighbor output.Claudio Jeker
2007-04-06Count the updates and withdraws for additional statisic gathering.Claudio Jeker
Discussed with henning@
2007-04-05remove an unused function.Pierre-Yves Ritschard
ok claudio@
2007-04-05another extra test i missed before, from charles longeauTed Unangst
2007-04-05remove some extra tests, from charles longeauTed Unangst
2007-04-05remove extra test, but do it correctly this timeTed Unangst
2007-04-04document correctly WHITE format; ok beckJason McIntyre
fixes system/5432 from Ullrich 'Jason' Haag
2007-04-04Type 4 (router) summery LSA need to be sent out with an LS ID equal to theClaudio Jeker
ASBR router ID. Using the avertising router for this only works for intra- area routes but fails horribly for inter-area ones. Luckily RIB router entries use the router ID as prefix so just use that instead -- this simplifies the code nicly. Figured out the hardway by pyr@. Tested and OK pyr@
2007-04-04There is no need to originate inter-area routes to the backbone.Claudio Jeker
Inter-area routes are already comming from the backbone so readding them is wrong. OK norby@
2007-04-03Don't get upset about short sized input files.Jonathan Gray
ok moritz@
2007-04-02Use fatal() if calloc fails instead of fatalx().Claudio Jeker
2007-04-02Typo.Claudio Jeker
2007-03-31some KNF, partially pt out by rivo nurges <rix@estpak.ee>Henning Brauer
2007-03-31Some code cleanups. Added one lint command, removed one unused function andMichele Marchetto
some other cosmetics.
2007-03-30Preserve the contents of the memory buffers when syslogd reinitializesCan Erkin Acar
logs in response to a HUP signal, as long as /etc/syslog.conf remains unchanged. ok mpf@