summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2005-04-28Support for "network connected" and "network static" -- announce allClaudio Jeker
directly connected respectively all static routes. The list is auto- matically adjusted as soon as a route changes. OK henning@
2005-04-28Be more careful when copying ifname from the struct sockaddr_dl.Claudio Jeker
OK henning@
2005-04-28add vsnprintf error checking. ok cloder@ millert@Moritz Jodeit
2005-04-28more vsnprintf checking. ok cloder@Moritz Jodeit
2005-04-28place this file in the public domainUwe Stuehler
2005-04-28more boring tweaksTheo de Raadt
2005-04-28boring tweaksTheo de Raadt
2005-04-27Fix a potential infinite loop that could be triggered by an invalid BGPChad Loder
packet. Partially from tcpdump.org, with additional paranoia added so that the problem is actually fixed. OK deraadt, otto
2005-04-27correct copyrightTheo de Raadt
2005-04-27Sort struct msgbuf by size. From Alexander von Gernler via henning@Claudio Jeker
2005-04-26unify shared code a bit again to make future syncs easierHenning Brauer
From: Alexander von Gernler <grunk@pestilenz.org>
2005-04-26add `zaurus' to .Dt line;Jason McIntyre
ok deraadt@
2005-04-25Call if_init() later and for each interface separately.Claudio Jeker
Move code from if_act_start() to if_init() that needs to be called only once per interface. Especially event_set should be called only once as it initializes struct event and so may cause corruption of the event queue if called twice.
2005-04-25Move the creation of the ospf_socket from if_init() directly into ospfe().Claudio Jeker
This makes it possible to call if_init() at a much later time.
2005-04-25Call if_init() in ospfe only, neither the rde nor the parent need it.Claudio Jeker
2005-04-25Change order of execution in if_act_reset(). First notify all neighborClaudio Jeker
that the interface gets reset (NBR_EVT_KILL_NBR) and than clear all timers of the interface. The nbr_fsm() may start some of the timers which has strange results. Tested by Philip Olsson.
2005-04-25tweaks;Jason McIntyre
2005-04-25spelling;Jason McIntyre
2005-04-25put EXAMPLES into a more standard format (first description, thenJason McIntyre
example), and use literal to mark up the commands themselves;
2005-04-25- login names may contain underscoresJason McIntyre
- reference to setlogin(2) BUGS was irrelevant, so remove it - mark up `$' from ray; ok millert@
2005-04-25- don't loop infinitely after a missed "mouse up" eventUwe Stuehler
- display bitmaps correctly if width is not divisible by 8 - display another bitmap on error
2005-04-25- display a message centered on the screenUwe Stuehler
- undo a signal handler change which slipped in with the previous commit
2005-04-24use the last position of the pen before it was lifted upUwe Stuehler
2005-04-24- indentationUwe Stuehler
- do ratio calculations in double, not integer - reduce allowed error to 1% (not more than 6 pixels off) - add usage()
2005-04-24how to use ztsscale...Theo de Raadt
2005-04-24enter ztsscaleTheo de Raadt
2005-04-24sync up, add some missing typesBrad Smith
2005-04-24spacingTheo de Raadt
2005-04-24Import matthieu's touch screen calibration tool for zaurus.Uwe Stuehler
ok deraadt@
2005-04-22RFC tells that the MTU in the db exchange packet may not be bigger thanClaudio Jeker
the interface MTU but it may be smaller. This makes Philip Olssons extreme networks summit24 happy as this stupid thing sets the MTU to 0. testing Philip Olsson, OK norby@
2005-04-22snprintf cleanup. OK deraadt@, moritz@Chad Loder
2005-04-21avoid looping on failed tty or /dev/console writes and just drop the messageDamien Miller
noticed by newell AT cei.net; ok avsm@ deraadt@
2005-04-21spacingTheo de Raadt
2005-04-20fix buffer overrun introduced with my previous commit. Found and fixed byHans-Joerg Hoexer
moritz@; while around take care of snprintf return values help and ok moritz@, henning@
2005-04-20be more careful with snprintf. ok cloder@ deraadt@Moritz Jodeit
2005-04-20fix signal race by removing STATE_QUIT completely.Moritz Jodeit
help and ok otto@ canacar@
2005-04-19Document the fact that ospfctl(8) understands "show rib".Esben Norby
ok claudio@
2005-04-19fix more cases of snprintf() returning -1. ok cloder@ niallo@Moritz Jodeit
2005-04-19handle snprintf() returning -1. ok henning@Moritz Jodeit
2005-04-19move the "reply from ... " log msg in -d mdoe uop a bit so it actuallyHenning Brauer
comes before the "adjusting local clock by..." one, joerg
2005-04-19Don't call event_set() before event_init().Claudio Jeker
OK norby@
2005-04-18extra paranoia, from a discussion with joergHenning Brauer
2005-04-18snprintf() return value handling. ok cloder@ henning@Moritz Jodeit
2005-04-18correctness: only account for offset after settime in next and deadlineHenning Brauer
when those timers are actually running. due to the way ntpd's logic works this does not really make a difference, but correctness is good. spotted by me, joerg agrees
2005-04-18tidy up AS section a little;Jason McIntyre
ok henning@
2005-04-18Static routes are flagged with F_STATIC and not with F_KERNEL. OK henning@Claudio Jeker
2005-04-18after setting the clock hard correct the "next" and "deadline" timestampsHenning Brauer
by the offset From: Joerg Sonnenberger <joerg@britannica.bec.de>
2005-04-18Set flag F_STATIC based on RTF_STATIC and not just because the route cameClaudio Jeker
from the kernel. That's what F_KERNEL is for. OK henning@
2005-04-18prevent replies with negative delay from being used, could happen with -sHenning Brauer
From: Joerg Sonnenberger <joerg@britannica.bec.de> of dragonfly
2005-04-18Print mrt config after the main and network config. Main and network configClaudio Jeker
belong together. OK henning@