summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-04-21regenMichael Shalayeff
2004-04-21fix old typoMichael Shalayeff
2004-04-21regenMichael Shalayeff
2004-04-21guess some from different funky lists found in google, intial guess by ↵Michael Shalayeff
weissmanndude
2004-04-21point people to usd doc;Jason McIntyre
ok otto@
2004-04-21- point people to smm docsJason McIntyre
- remove some .Pp and -compact from displays - remove groff cruft - add space ok millert@ (the first part anyway)
2004-04-21- add margin when formatting w/ -TasciiJason McIntyre
- update doc w/ reality - grammar/punctuation fixes Thanks Todd Miller, who provided feedback, fixed some buggy examples, fixed some of my blunders, and sanity checked the diff (and ok'd it);
2004-04-21kill whitespace at eol;Jason McIntyre
2004-04-21missing comma;Jason McIntyre
2004-04-21sync AUTHORS w/ other dhcpd pages;Jason McIntyre
ok henning@
2004-04-21fix fcmp parsingMichael Shalayeff
2004-04-21regenMichael Shalayeff
2004-04-21cleanup and guess some models based on descriptionsMichael Shalayeff
2004-04-21fix _dhcp use nonexistant error message here tooHenning Brauer
2004-04-21fix the error message in case the _dhcp user does not existHenning Brauer
2004-04-20Adapt to new pw_copy() API, closes PR 3698.Todd C. Miller
2004-04-20Change pw_copy(3) to take a 3rd arguement, the existing passwd entry.Todd C. Miller
This allows an application to only update a password entry if it is in the state it expects. Additionally, if the old passwd struct is specified the new one may have a different pw_name field since matching is done on the original. Adapted from FreeBSD.
2004-04-20add back manpage that was forgotten during the switch, catched by and ok theoHenning Brauer
2004-04-20set write filter and lock the bpf descriptor after configuration.Can Erkin Acar
ok henning@
2004-04-20get rid of the -p switch, use fixed values for server and client ports,Can Erkin Acar
rename port variables for clarity. ok henning@
2004-04-20add tcps_rcvacktooold; ok deraadtMarkus Friedl
2004-04-20be more precise about devices creation since the "Build Devices" partXavier Santolaria
only builds a minimal tree of device and that you still have to ``cd /dev && ./MAKEDEV all'' to generate all the available device nodes to finish the installation. >From: Martin Reindl <mreindl at catai.org> okay nick@.
2004-04-20Disable FFS_SOFTUPDATES too, from form@pdp-11.org.ruAlexander Yurchenko
ok deraadt@
2004-04-20Belkin F5U109; from NetBSD, ok henningPeter Valchev
2004-04-20enable umidi, now that the include issue has been fixedPeter Valchev
USB section now in sync with the rest
2004-04-20protect from multiple inclusion; ok miodPeter Valchev
2004-04-20set uvm_km_pages_lowat to 128; unbreaks mbuf allocation;Markus Friedl
tested by jmc, brad, hshoexer
2004-04-20kern.maxclusters. ok beck@ deraadt@ jmc@Ted Unangst
2004-04-20GATEWAY and NMBCLUSTERS are dead. ok beck@ deraadt@ jmc@Ted Unangst
2004-04-20switch to new dhcpd, theo okHenning Brauer
2004-04-20$OpenBSD$Henning Brauer
2004-04-20more shrinking; ok henningTheo de Raadt
2004-04-20switch to new dhcrelay, theo okHenning Brauer
2004-04-20there are lies, damn lies, and isc dhcpd manpagesHenning Brauer
2004-04-20tree.h is not used at allTheo de Raadt
2004-04-20remove lies about the leases file and its handlingHenning Brauer
2004-04-20don't allow the port to be changed here eitherHenning Brauer
2004-04-19include string.h for memset, canacar@ okAnil Madhavapeddy
2004-04-19remove the GATEWAY junk thingy; at the same time, select a new fatTheo de Raadt
cluster value that noone will really need to crank.
2004-04-19remove the GATEWAY junk thingy; at the same time, select a new fatTheo de Raadt
cluster value that noone will really need to crank.
2004-04-19document wi(4) at USB; ok miodPeter Valchev
2004-04-19introduce a new km_page allocator that gets pages from kernel_map usingTed Unangst
an interrupt safe thread. use this as the new backend for mbpool and mclpool, eliminating the mb_map. introduce a sysctl kern.maxclusters which controls the limit of clusters allocated. testing by many people, works everywhere but m68k. ok deraadt@ this essentially deprecates the NMBCLUSTERS option, don't use it. this should reduce pressure on the kmem_map and the uvm reserve of static map entries.
2004-04-19also use sbcheckreserve() for setsockopt of SO_SNDBUF and SO_RCVBUFTheo de Raadt
2004-04-19this is only a work in progress, we can perfect afterwards, but it is timeTheo de Raadt
to get some experience with these ideas. add sbcheckreserve() api; called by accepting sockets. if over 95% of mbuf clusters are busy, consider this a resource starvation just like the other reasons for accept failing. also, if over 50% of mbuf clusters are busy, shrink recv & send sockbuf reserves to "the minimum".
2004-04-19Report when VIA AES is present, even if we're not going to use it becauseTom Cosgrove
CRYPTO is not defined ok deraadt@
2004-04-19fix idiot typo that i introduced in my last commit;Damien Miller
spotted by cschneid AT cschneid.com
2004-04-19some gcc3/propolice --enable-checking fixes:Anil Madhavapeddy
- dont use DECL_INLINE to alter a VAR_DECL inline flag. This trips off gcc3's FUNCTION_DECL assert. Define DECL_VAR_INLINE and use that instead. - RTX_INTEGRATE_P isnt expecting to see a PLUS code, which pp adds. ok etoh@
2004-04-19point people to usd/psd docs;Jason McIntyre
2004-04-19Remove unused stuff; give error message if the db cannot be openened; setOtto Moerbeek
exit code. ok beck@
2004-04-19Don't complain when the /nonexistent homedir does not exist.Todd C. Miller
Based on a patch from Sam Smith. henning@ OK