summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-01-07Implement -p option.Otto Moerbeek
"works here" millert@ ok miod@ deraadt@
2004-01-07Fix crash reported in pr/3630. Poll all scsi requests that have SCSI_POLL set.Kenneth R Westerback
ok miod@ tdeval@.
2004-01-07Better diagnostic message if we can't open the external MBR fileTom Cosgrove
ok weingart@, tedu@
2004-01-07Remove duplicate definitions with MI ddb headers, and fix db_stack_trace_printMiod Vallat
prototype in the process.
2004-01-07deal with messages on the AF_ROUTE socket in a multiprotocol friendlier way.Henning Brauer
this is also some preparation for v6 support. "looks good" claudio@
2004-01-07corrections to SET OPTIONS;Jason McIntyre
2004-01-07fix a check that catched too much... now connected routes that appearHenning Brauer
after startup (due to addition of an ip to an interface) are handled correctly.
2004-01-07Modified version of hennings last patch. OK henning@Claudio Jeker
2004-01-07Duh. Fixing stupid braino. OK henning@Claudio Jeker
2004-01-07Document mrt dump comands. Help by jmc@ OK henning@Claudio Jeker
2004-01-07s/environmental/environment/;Jason McIntyre
2004-01-07disable for all openbsd arches.Marc Espie
2004-01-07corrections to the EX COMMANDS section;Jason McIntyre
2004-01-07in_pcbnotify() now returns number of matches.Markus Friedl
2004-01-07cleanup obsolete comment from NRL code. markus okJun-ichiro itojun Hagino
2004-01-07do not include proc.h twice; ok miodPeter Valchev
2004-01-07define __sparcv9__ on sparc64; discussed with many ppl, solves many issuesPeter Valchev
found by miod
2004-01-07Variables in kinfo_proc2 that are actually sigset_t should be unsignedTodd C. Miller
2004-01-07Sync PTRTOINT64 w/ kernel version and remove some unused vars.Todd C. Miller
2004-01-07Add p_emul to kinfo_proc2 for psTodd C. Miller
2004-01-07syncTheo de Raadt
2004-01-07Convert back to using kvm_getproc2() and friends now that libkvmTodd C. Miller
supports it.
2004-01-07Implement kvm_getproc2(), kvm_getargv2() and kvm_getenvv2() that useTodd C. Miller
the KERN_PROC2 sysctl. Based on changes from NetBSD but uses our own kvm_arg_sysctl().
2004-01-07Implement KERN_PROC2 sysctl from NetBSD. This will allow us toTodd C. Miller
have ps and friends be independent of changes in struct proc et al in the kernel. OK deraadt@
2004-01-07KNFHenning Brauer
2004-01-07don't ever send kroute change (that includes add) requests to the parentHenning Brauer
where the nexthop is not in state NEXTHOP_REACH. previously routes in state NEXTHOP_LOOKUP, i. e. not yet verified, were send to the parent process causing unnecessary and of course failing route add attempts, cluttering logs, etc. nexthops in state NEXTHOP_UNREACH were handled correctly.
2004-01-07handle global vs peer-specific holdtime in a nicer and reload-friendlierHenning Brauer
way
2004-01-07don't try to be smart after config reloads and try to detect wetherHenning Brauer
a session needs a reinit for the new conf to kick in. the logic is condemned to fail, and implicitly taking sessions down is BAD. after discussion with mickey@, ok claudio@
2004-01-07amout -> amount; from tom@.Federico G. Schwindt
2004-01-07Sync fdisk's internal master boot record with the recent changesTom Cosgrove
to /usr/mdec/mbr. (This code is only used if /usr/mdec/mbr cannot be found.) ok toby@, tedu@
2004-01-07amout -> amount; from Pedro Martelletto.Federico G. Schwindt
2004-01-07missed one v3Marc Espie
2004-01-07ieee80211 framework from NetBSD; ok'd by several people some time ago.Federico G. Schwindt
more fixes comming.
2004-01-07syncTom Cosgrove
2004-01-07- Remove duplicate entry for Lucent Win Modem 0x0449Tom Cosgrove
- Fix typo in device id for S3 86C964 rev 3 ok krw@, deraadt@
2004-01-07Make sure that kroute updates for the FIB are only sent if there is aClaudio Jeker
change. Until now rde_send_kroute tried to send a IMSG_KROUTE_DELETE if old and new prefix where ineligible. OK henning@
2004-01-06- Rename index to longindex and explain its use.Federico G. Schwindt
- Talk about zeroing the last element of the longopts array. - Remove '?' from the switch and some KNF to the code. - Change 0's to NULL where appropriate. jmc@ ok.
2004-01-06small bug that was not so easy to fix: we did not allow empty lines (orHenning Brauer
comment-only lines) in the middle of neighbor/group blocks. as first or last line in thise blocks they were accepted, but not in between. ok deraadt@
2004-01-06neighbor 1.2.3.4 up/downHenning Brauer
ok claudio@
2004-01-06two new imsg types, IMSG_CTL_NEIGHBOR_UP and _DOWN, on their receival on theHenning Brauer
control socket the given neighbor session is sent a START / STOP signal. ok claudio@
2004-01-06initialize new peers inline instead of looping through 'em initing eachHenning Brauer
before the mainloop started, and a speerate init for those coming in on reloads. much easier this way. ok claudio@
2004-01-06Free buf on error and correct of by one in strlcpy.Claudio Jeker
From Patrick Latifi <pat at eyeo.org> OK henning@
2004-01-06adjust pentium_mhz when cpu speed changes. ok deraadtTed Unangst
2004-01-06We don't have signal(7)Todd C. Miller
2004-01-06in session_dispatch_msg, in the loop where we suck the messages out of theHenning Brauer
buffers, we need to check wether the buffers are still there before trying to get the next message. the previous one might have caused the session to drop back to the IDLE state, which implies that those buffers have been deallocated. ok claudio@
2004-01-06allow holdtime and holdtime min to be configuered per peerHenning Brauer
ok claudio@
2004-01-06Drop UDP packets with destination port 0, or zero or oversized payloadDaniel Hartmeier
length (same as udp_input() does, if pf is not enabled). Found by Pyun YongHyeon. ok cedric@, ho@, henning@ and markus@.
2004-01-06pkill/pgrep from NetBSD with changes to use kvm_getprocs(). SelectingTodd C. Miller
on session ID does not current work but that will change once the kernel supports the KERN_PROC2 sysctl and pkill/pgrep is modified to use kvm_getproc2(). OK deraadt@
2004-01-06Fix signal handling when there is an error in inetd.conf. Found byTodd C. Miller
mpech@. OK mpech@ and deraadt@
2004-01-06print intervals with the timersHenning Brauer