summaryrefslogtreecommitdiff
path: root/sbin
AgeCommit message (Collapse)Author
2003-05-01allow label on antispoof; requested by Gregor Binder <gbinder at sysfive.com>Henning Brauer
ok cedric@
2003-04-30only compare suberblock fields that are interesting, instead of trying toTed Unangst
ignore the noninteresting ones. will allow future changes to work with an older fsck. similar to changes in NetBSD and FreeBSD. ok krw@
2003-04-30cast size_t to unsigned long and use %lu;ok hoJason Wright
2003-04-30kill globals anchorname and rulesetname; have them in main instead and passHenning Brauer
to the functions that need them. makes the code easier and cleaner in some places and will be needed for other things to come soon ok cedric@
2003-04-30Allow tables to be loaded into anchors.Cedric Berger
Most pfctl table commands (excluding 'show' and 'flush') support the "-a" modifier. ok dhartmei@
2003-04-30a on or off thing -> an on or off thing;Jason McIntyre
2003-04-29Fix parsing of noac option; noticed and OK by henning@Todd C. Miller
2003-04-27Update the pfioc_table IOCTL structure.Cedric Berger
Prepare for anchors, improve robustness. WARNING: need to sync kernel/userland. ok dhartmei@
2003-04-27Describe the 'C set' FIFO command better. (PR#3148, also)Hakan Olsson
2003-04-27Make the 'C set' FIFO command work as expected. PR#3148.Hakan Olsson
2003-04-26strcpy -> strlcpy.Kenneth R Westerback
ok dhartmei@ deraadt@ (and tdeval@ with stylistic reservations)
2003-04-26bye byeTheo de Raadt
2003-04-26string cleanup; ok teduTheo de Raadt
2003-04-26remove a bit more junkTheo de Raadt
2003-04-26remove stuff not neededTheo de Raadt
2003-04-26string cleaning; ok teduTheo de Raadt
2003-04-26blow away file not neededTheo de Raadt
2003-04-25string cleanupTheo de Raadt
2003-04-25Support for accessing the information from the hardware monitoring sensorsAlexander Yurchenko
via hw.sensors node. To get the information from the all sensors just do $ sysctl hw.sensors. To get the information from the particular sensor (number 5 e.g.) do $ sysctl hw.sensors.5 Tested and ok'ed by henning@ and millert@.
2003-04-25Very little tweak for consistency in space vs \tAlexander Yurchenko
2003-04-25kill a workaround now that inet_net_pton acts reasonablyHenning Brauer
2003-04-25check asprintf return value for error as well, some implementations doPeter Valchev
not set the pointer to NULL necessarily; ok dhartmei, henning, kjell
2003-04-25Properly copy the second part of nat proxy port range, when specified.Daniel Hartmeier
ok henning@
2003-04-24get rid of incorrectly sized buffer by using asprintf; ok millertPeter Valchev
2003-04-24mount_cd9660 is not normally executed at boot time;Jason McIntyre
from NetBSD (Aidan Kehoe); ok deraadt@ millert@
2003-04-23most programs do not syslog at startup. especially this oneTheo de Raadt
2003-04-21a few string cleanups; ok dhartmeiTheo de Raadt
2003-04-20print "direxec" when it's enabled on msdosfs.Ted Unangst
from Thorsten Glaser
2003-04-19change "%12.f" -> "%12.0f" to avoid a -Wformat warningAnil Madhavapeddy
ok millert@
2003-04-18support for making directories executable if readable.Ted Unangst
to use this, you want to run mount_msdos with -m 0644 -x or so. ok millert@
2003-04-17use asprintf; fix (remove) some incorrectly sized buffers in the processPeter Valchev
help & ok millert, miod, deraadt, tedu
2003-04-17strlcpy; ok teduTheo de Raadt
2003-04-17strings. mostly from deraadt@, some from tdeval@ and myselfTed Unangst
2003-04-16use errx instead of fprintf+exit; millert@ okMichael Shalayeff
2003-04-16fix race between mount(2) and exit(2) for mount_mfs.Markus Friedl
from netbsd (drochner, newfs.c 1.30, mkfs.c 1.29, no copyright changes) ok tedu@
2003-04-16string cleaningTheo de Raadt
2003-04-15display basic hfsc statsHenning Brauer
2003-04-15pass down the unparsed queue opts (struct node_queue_opt) toHenning Brauer
print_altq/print_hfsc -> print_hfsc_opts and extract struct node_hfsc_sc there for each service curve and pass those down to print_hfsc_sc. now bandwidth specifications in the service curves are printed correct in the case of a queue belonging to more than one interface/parent queue, the parent queues having different bandwidths and the bandwith on teh service curve beeing specified in percent.
2003-04-15make print_hfsc_sc() take an extra struct node_hfsc_sc parameter and printHenning Brauer
relative bandwidth specification if that ws given instead of the calculated absolute ones. to be used soon.
2003-04-15don't include the unit "ms" when printing the service curve; parser wantsHenning Brauer
raw number
2003-04-15factor out service curve printing to it's own function, print_hfsc_sc().Henning Brauer
2003-04-15asprintf, and fix buffer sizes; ok teduTheo de Raadt
2003-04-14Defer incrementing ntransmitted until we are sure sendto succeeds.Chad Loder
2003-04-14if linkshare service curve m2 == bandwidth, but d given, we do need to printHenning Brauer
linkshare as it is not exactly the default case then
2003-04-14only print hfsc linkshare when it differs from the defaultHenning Brauer
2003-04-14do not add a realtime service curve to the root queue asKenjiro Cho
the realtime service is not hierarchically distributed. ok henning@
2003-04-14let print_altq and print_queue take a struct node_queue_bw parameter insteadHenning Brauer
of dintinct bw_percent
2003-04-14Unlink FIFO and pid files on clean shutdown. PR#3199Hakan Olsson
2003-04-14More snprintf styleHakan Olsson
2003-04-14permit -s0. from Maxim KonovalovJun-ichiro itojun Hagino