summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-05-13Remove sk from untested section as it is already listed in tested.Jonathan Gray
Same problem as what was pointed out in PR 4203.
2005-05-13Do not invoke hil_process_pendinc() from the interrupt handler if the loopMiod Vallat
is marked as busy.
2005-05-13RegenMiod Vallat
2005-05-13Separate button boxens from keyboards in the HIL device list.Miod Vallat
hilkbd will still match both, but will neither do the auto-layout dance nor attach as console for button boxens.
2005-05-13some Xr's from jason ackley;Jason McIntyre
2005-05-13The NET_RT_IFLIST sysctl returns RTM_IFINFO and RTM_NEWADDR messages inClaudio Jeker
the buffer. While RTM_IFINFO starts with a struct if_msghdr RTM_NEWADDR does not. In other words (struct sockaddr *)(next + sizeof(ifm)) is only correct for RTM_IFINFO and not for RTM_NEWADDR. So move the ifm_type check up else get_rtaddrs() would access memory outside of buf. OK henning@
2005-05-13The NET_RT_IFLIST sysctl returns RTM_IFINFO and RTM_NEWADDR messages inClaudio Jeker
the buffer. While RTM_IFINFO starts with a struct if_msghdr RTM_NEWADDR does not. In other words (struct sockaddr *)(next + sizeof(ifm)) is only correct for RTM_IFINFO and not for RTM_NEWADDR. So move the ifm_type check up else get_rtaddrs() would access memory outside of buf. OK henning@
2005-05-13Add tests for __strsignal(). Put here since the tests are very similarOtto Moerbeek
to the strerror() test.
2005-05-13minor fixesJared Yanovich
- some strn* to strl* - allocation failure checks - fix overflow in getstring() ok otto, moritz
2005-05-13enable spkr by default; ckuethe 4201Theo de Raadt
2005-05-13do { } while (0) wrappers on debug printf macros. ok reyk@Jonathan Gray
2005-05-13sync with ral(4).Jonathan Gray
2005-05-13Another ural reported to work by Rodolfo Gouveia.Jonathan Gray
2005-05-13move IFQ_SET_MAXLEN to just above IFQ_SET_READYBrad Smith
2005-05-12add CF_NOFILES flagJoris Vink
2005-05-12set cvsent to NULL if entfile is NULL, fixes a crashJoris Vink
in cvs_file_lget().
2005-05-12add CF_KNOWN and CF_NOFILES flags; joris okXavier Santolaria
2005-05-12introduce a new flag to the file api: CF_NOFILES, which allows usJoris Vink
to only load directories and skip regular files. tested and ok xsa@
2005-05-12syncTheo de Raadt
2005-05-12snprintf checks; joris okXavier Santolaria
2005-05-12tweaks;Jason McIntyre
2005-05-12Calculate routes for summary and as-external LSA. Still some minor partsClaudio Jeker
missing but good enough to be used. Tested and some input by Stephen Marley. OK norby@
2005-05-12lsa_age() the vertex befor comparing the age with MAX_AGE.Claudio Jeker
Move a common check (cost == LS_INFINITY) out of the switch cases. OK norby@
2005-05-12Every time a LSA is returned from a lookup lsa_age() it.Claudio Jeker
Also move the lsa_age() prototype to rde.h so that we can access it from the SPF code. OK norby@
2005-05-12Don't fatal in case no root node was found for spf calculation.Claudio Jeker
The area may be empty because there is no active interface. OK norby@
2005-05-12Reflect reality.Esben Norby
2005-05-12Add "show database asbr/external/network/router/self-originate/summary"Esben Norby
to ospfctl. Show detailed information about the LSAs in the Link State Database. ok claudio@
2005-05-12fix segfault in cvs_resp_error()Joris Vink
2005-05-12ANSIfy, some KNF and zap a little bit of whitespace.Niall O'Higgins
No binary changes. ok mickey@
2005-05-12syncTheo de Raadt
2005-05-12airprime and sealevelTheo de Raadt
2005-05-12RegenMiod Vallat
2005-05-12Populate \t better in the output, for human readability; no change in theMiod Vallat
map themselves.
2005-05-12Add a bzero() after malloc() when allocating component info in ccdinit().Niall O'Higgins
This fixes a panic in ccd(4) mirroring where the second component could be wrongly treated as failed, which leads to uvm_fault in write operation. ok mickey@
2005-05-12make functions static; joris okXavier Santolaria
2005-05-12Fix multiple bugs in if_act_elect(). In some cases DR were set wronglyClaudio Jeker
because of a stupid typo that I fixed in rev. 1.6 but forgot to fix the bug I introduced before because of that typo. Also reset the DR/BDR fields of iface->self when going to round two. Without the reset it is e.g. not possible to drop from DR to BDR. Issue found and patch tested by Stephen Marley OK norby@
2005-05-12Document pt.apple layout.Miod Vallat
2005-05-12RegenMiod Vallat
2005-05-12Define a specific map for the Apple portuguese USB keyboards.Miod Vallat
Based on input from Manuel Pata and Rodolfo Gouveia on tech@.
2005-05-12Define a keyboard layout variant for Apple international USB keyboards, whichMiod Vallat
sometimes sligthly differ from the canonical layout.
2005-05-12.Xr script 7Jason McIntyre
2005-05-12add script(7): interpreter script execution;Jason McIntyre
from netbsd; some tidy up from jaredy@, otto@, and myself;
2005-05-12If activly connected to more than one area set B flag in the self-originatedClaudio Jeker
router LSA. To do that correctly we need to track the number of active neighbors for each area. If the routers ABR status changes all router LSA need to be updated via orig_rtr_lsa_all(). OK norby@
2005-05-12Xr securelevel 7Jason McIntyre
from tamas tevesz;
2005-05-12change pfctl reference to pf, since programs like authpf also attempt toJason McIntyre
alter rulesets, not just pfctl interface; from tamas tevesz;
2005-05-12add some missing section descriptions to make this page a littleJason McIntyre
easier to read; ok hshoexer@
2005-05-12credit .Bx 3 in HISTORY too;Jason McIntyre
agreed w/ otto@
2005-05-12remove unsupported LIBRARY section;Jason McIntyre
2005-05-12Minimal terminal line discipline support to stop the boot timeoutUwe Stuehler
after the first keystroke, as on other platforms.
2005-05-12borrow some from hppaMichael Shalayeff