summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2008-05-11fix sync.c to not puke if sync_lease called without sync_init.Bob Beck
from henric.
2008-05-11allow IMSG_CONTROL_SHOW_TIMER on restricted socketsHenning Brauer
2008-05-10from ray@Okan Demirmen
- move the ignoring of the top few (3) comments into a function of its own. - ignore these comments for crontab listings. based on a patch from Slava Semushin ok ray@ millert@
2008-05-09tweak previous; ok mbalmerJason McIntyre
2008-05-09Henning forgot ospf6d. Add priority to ospf6d as well.Claudio Jeker
2008-05-09prio RTP_RIP for inserted routesHenning Brauer
2008-05-09insert/delete routes w/ prio RTP_OSPFHenning Brauer
2008-05-09insert/delete routes with priority RTP_BGPHenning Brauer
this is mostly cosmetical for the moment, there are bigger changes required to make full use of the route priorities, but this is the first step to do. discussed with claudio
2008-05-09Don't just ntohl() the hours, but everything of the stateMarco Pfatschbacher
creation time. OK mcbride@, henning@.
2008-05-09some Xr for tcpbench(1) and tcpdrop(8);Jason McIntyre
2008-05-09Add support for IPv6 while keeping the default at IPv4 to not breakMarc Balmer
existing installations. See the documentation for the IPv6 related configuration. This changes the module ABI since addresses are now struct addrinfo. This has been tested by many people and run on production machines for several months. feedback many, ok todd
2008-05-08documentation tweaks.Igor Sobrado
2008-05-08Insert pad blocks after sub-messages to keep the structures aligned toTheo de Raadt
16 byte boundaries for maximum portability (somewhat similar to CMSG's) ok beck
2008-05-08backout shit committed on accidentHenning Brauer
2008-05-08timer_due is not needed any moreHenning Brauer
2008-05-08KNFHenning Brauer
2008-05-08take advanatge of the timewheelin timer_nextduein - we just need to lookHenning Brauer
at the first one
2008-05-08we can stopin timer_set if new timeout equals the oldone.Henning Brauer
matters for stuff like the HoldTimer that gets reset often
2008-05-08take advantage of the timewheel: instead of checking each an everyHenning Brauer
timer, just get the first off the queue and check wether it is due
2008-05-08in timer_set, when figuring out the right position for the timer,Henning Brauer
wemust stop walking the list once werun into a stopped timer, or eventually all stopped timers will queue up at the very front (instead of at the tail)
2008-05-08this should really only be in one file.Bob Beck
2008-05-08change timer internals so that we use a timewheel (tailq, sorted by expiryHenning Brauer
so that the timer that will expire first is always the first element, and so on). will make the checking a bit faster and moreelegant and more conveniant. ok claudio
2008-05-08don't break dhcpd when not using synch mechanisms..Bob Beck
2008-05-08make sure we always send back something on IMSG_CTL_SHOW_NEIGHBORHenning Brauer
namely, the "no such neighbor" case was missing. problem spotted by martin,ok claudio
2008-05-08move the session keys used by dns in a protocol-specific private ptr.Reyk Floeter
2008-05-08missed to set the default for tables to round-robin, so it wasReyk Floeter
loadbalance after the grammar change. make it round-robin again.
2008-05-07OSPF uses the highest IP address, not the lowest.Joel Sing
hai norby@
2008-05-07Add synchronisation support for dhcpd - this allows for two dhcpd'sBob Beck
with the same configuration to be run on the same net and they will keep their lease files/state in synch, and therefore allowing you to run redundant dhcpd's. Synchronization code stolen from spamd, uses an hmac key in /var/db/dhcpd.key if it exists. ok krw@ deraadt@
2008-05-07Ref to ripd instead of routed.Claudio Jeker
2008-05-07Remove .Xr to routed and reword the sentence a bit to make more sense.Claudio Jeker
pppd can filter on network protocols not network daemons. OK norby@
2008-05-07add an alternative "route to" mode to relayd redirections which mapsReyk Floeter
to pf route-to instead of the default rdr. it is a first steps towards support for "direct server return" (dsr), an asynchronous mode where the load balanced servers send the replies to a different gateway like a l3 switch/router to handle higher amounts of return traffic. because the state handling in pf isn't optimal for this case yet, it just sees half of the TCP connection, the sessions are forced to time out after fixed number of seconds. discussed with many, thought about in the onsen
2008-05-06tweak previous;Jason McIntyre
2008-05-06the manpage mentioned "timeout" in relay sections, while the grammarReyk Floeter
expected the keywords "forward timeout". rename it to "session timeout" and sync the documentation with reality.
2008-05-06the message digest http check does not work on binary content, add manpageReyk Floeter
clarification. From bsd at openbsd dot rutgers dot edu, closes pr5801 ok pyr@
2008-05-06fix the table stats clr ioctlReyk Floeter
2008-05-06do not attempt to reload a configuration if we come from a non pfPierre-Yves Ritschard
requiring configuration to a pf requiring one. ok reyk@
2008-05-06More missing RTM_VERSION checks. OK henning@Claudio Jeker
2008-05-06Do not unconditionnaly load pf. If pf isn't required by the configurationPierre-Yves Ritschard
the initialisation isn't done properly.
2008-05-05clean up after reyk (tab at EOL)Henning Brauer
2008-05-05don't install a /128 bit net route for 'proxy' ndp entriesMarkus Friedl
and show them with ndp -a, too. from KAME rev 1.121; ok henning
2008-05-05Use rtm_hdrlen instead of the static header length. OK norby@Claudio Jeker
2008-05-05Put relay sockets in non blocking mode too. This got forgotten along thePierre-Yves Ritschard
way and didn't show since our read buffers are small. ``put it in'' reyk@
2008-05-02Compare flags against the right flag field or else unexpected things mayClaudio Jeker
happen. The decision process failed to correctly mask looping pathes and in some szenarios even elected them as best route. *gulp* Found the hard way and fix tested by Christian, bsd (at) cleondra (dot) ch
2008-05-02Fix logic when setting the F_RIB_ELIGIBLE flag. A path with a NULL nexthopClaudio Jeker
is localy originated and so is eligible by definition. Noticed and fix tested by Christian, bsd (at) cleondra (dot) ch
2008-05-02do not always delay log initialization, when no configuration file isPierre-Yves Ritschard
present, which is the most common use of rtadvd, it would otherwise always print messages to the console though the situation is valid. this fixes a regression introduced with the new logging code. ok rainer@, todd@, fgsch@
2008-04-30* add xetcXX.tgz support to sysmerge and handle binary filesAntoine Jacoutot
* update man page accordingly * several cleanups in the process: - smaller sendmail configuration files diff check - remove a condition that would always evaluate to true - define AUTOMODE to a value we can reuse later - tell user when installing a file automatically - better check for src directory validity - remove full PATH to some commands to be consistent testing from several man pages bits ok jmc@ "go ahead" jasper@, ok sthen@ pyr@
2008-04-28tweak previous;Jason McIntyre
2008-04-28Improve the dvmrpd(8) manpage.Esben Norby
2008-04-25neccessary -> necessary; from Pierre RiteauJason McIntyre
2008-04-25spelling: pathes->paths, ok henningStuart Henderson