Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-12-19 | fix 'no rdr'. | Daniel Hartmeier | |
2002-12-19 | Document atactl dump command; thanks to nick@ for pointing this out. | Alexander Yurchenko | |
ok deraadt@ | |||
2002-12-19 | much prettier | Theo de Raadt | |
2002-12-19 | no you | Theo de Raadt | |
2002-12-18 | Store translation rule pointer in state entries, so pfctl -vsn can print | Daniel Hartmeier | |
evaluation, packet, byte and state entry counters similar to -vsr. Helps verify whether/how often translation rules are evaluated/matched. ok frantzen@, henning@ | |||
2002-12-18 | Reorder sysctl list, to match sysctl -a output (mostly, structures cheat). | Miod Vallat | |
Add/remove the missing/extra bits. And you get a typo fix for free. | |||
2002-12-18 | more KNF | Henning Brauer | |
2002-12-18 | Pass skip step values through ioctl interface, pfctl -vvsr shows them, | Daniel Hartmeier | |
main purpose is making them regress-testable. | |||
2002-12-18 | remove dup include | Markus Friedl | |
2002-12-18 | rule.nr USHRT_MAX -> -1, to detect states whose creating rules are | Daniel Hartmeier | |
already gone. | |||
2002-12-18 | ryan, look at this. | Henning Brauer | |
2002-12-18 | Remove duplicate entry for kern.somaxconn introduced in last commit; | Todd C. Miller | |
Noticed by Dries Schellekens | |||
2002-12-18 | Maintain separate pfioc_rule structures for each type of rule, | Ryan Thomas McBride | |
to prevent tickets from getting overwritten. bug reported by dhartmei@ ok dhartmei@ | |||
2002-12-18 | proto list expansion is not supported in binat-anchor yet, print an error | Daniel Hartmeier | |
when attempted. | |||
2002-12-18 | Support (single) destination port in rdr-anchor rules. Print an error | Daniel Hartmeier | |
where parameters are not supported (in rdr-anchor and binat-anchor) yet. If those are needed, we'll have to expand them properly. | |||
2002-12-18 | fix some INCREDIBLE new bugs which were introduced | Theo de Raadt | |
2002-12-17 | Make SysV-style shared memory and semaphore limits sysctl'able. | Todd C. Miller | |
Instead of allocating a static amount of memory for the data structures via valloc() in allocsys(), allocate things dynamically using pool(9) when possible and malloc(9) when not. The various members of struct seminfo and struct shminfo are in kern.seminfo and kern.shminfo respectively (not all members of kern.seminfo are changable). The data structures used still leave something to be desired but things are not made worse in that respect by this commit. | |||
2002-12-17 | add support for the PRIQ scheduler | Henning Brauer | |
partitially from kjc@ ok kjc@ dhartmei@ | |||
2002-12-17 | Match merge of pf_nat/pf_binat/pf_rdr structs into pf_rule | Ryan Thomas McBride | |
ok dhartmei@ henning@ | |||
2002-12-17 | missing break in switch | Henning Brauer | |
2002-12-17 | beautify the %type block | Henning Brauer | |
2002-12-17 | PRIQ and HFSC support functions, not yet used. | Henning Brauer | |
mostly from kjc@ with adjustments by me. ok theo ryan daniel | |||
2002-12-17 | display.focus is a signed int, make it so; this fixes a problem under x11, ↵ | Michael Shalayeff | |
which is now a correct -1 | |||
2002-12-17 | class -> queue | Henning Brauer | |
2002-12-17 | duh. two checks in rate2str which decide wether to print Mb or Kb had 1024 | Henning Brauer | |
instead of 1000 in. cosmetic changes if at all. | |||
2002-12-16 | only create a root queue if scheduler = cbq | Henning Brauer | |
2002-12-16 | KNF | Henning Brauer | |
2002-12-16 | only try to add the root queue for cbq | Henning Brauer | |
from kjc@ | |||
2002-12-16 | get full [scheduler]_opts struct instead of just .flags, and wrap in into a | Henning Brauer | |
switch (scheduler) statement in one case inspired by kjc@ | |||
2002-12-16 | raidframe -> RAIDframe | Thierry Deval | |
2002-12-15 | correct clri description; from Dan Weeks <danimal at danimal dot org> via | Federico G. Schwindt | |
PR/3034. | |||
2002-12-15 | There is no such thing as pf=YES variable, there is a variable | margarida | |
named pf which you can assign YES. Mention net.inet6.ip6.forwarding. inspired by nick@ and ok'd by henning@ | |||
2002-12-15 | rule set(s) -> ruleset(s) | margarida | |
henning@ ok | |||
2002-12-15 | more writable spelling; torh | Henning Brauer | |
2002-12-13 | allow a second queue for higher priorized (currently: tos=lowdelay) packets | Henning Brauer | |
to be specified per rule queue (qname, priorized_qname) idea dhartmei ok dhartmei@ frantzen@ deraadt@ | |||
2002-12-13 | a bit KNF originally part of another diff soon to come; frantzen@ correctly | Henning Brauer | |
pointed out that should be a seperate commit. | |||
2002-12-13 | permit re-ordering of some scrub parameters, and also clean up some other | Theo de Raadt | |
grammer balony; henning ok | |||
2002-12-13 | fdisc -> fdesc. form@ | Mike Pechkin | |
2002-12-12 | KNF | Henning Brauer | |
2002-12-12 | we don't need to keep a private copy of the queue name in expand_rule, | Henning Brauer | |
r->qname is never modified discussed with dhartmei@ | |||
2002-12-12 | Missing 'Cm'. From <andrushock@korovino.net> | Mike Pechkin | |
2002-12-12 | ansi | Theo de Raadt | |
2002-12-11 | Minor cosmetic nits picked while reading though init.c: | Todd C. Miller | |
o Use STD{IN,OUT,ERR}_FILENO, not 0-2 o Call exit() from main, not return() (code is never reached anyway) o Change two cases of '!' into "== NULL" | |||
2002-12-11 | ansi; p/o by Andrushock <andrushock@korovino.net> | Alexander Yurchenko | |
ok gluk@ | |||
2002-12-11 | ansi; modload users please test | Theo de Raadt | |
2002-12-11 | ansi | Theo de Raadt | |
2002-12-11 | ansi | Theo de Raadt | |
2002-12-11 | Replace strncpy + ugly pointer math with sscanif for reading source-hash keys | Ryan Thomas McBride | |
ok dhartmei@ henning@ | |||
2002-12-11 | Wording; David Krause | Henning Brauer | |
2002-12-10 | don't warnx after ioctl, use warn | Henning Brauer | |
pointed out by form@ via mpech@ |