Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-01-15 | what a bogus message | Theo de Raadt | |
2003-01-15 | missing "," | Markus Friedl | |
2003-01-15 | Typo in yyerror(). | Mike Pechkin | |
henning@ | |||
2003-01-15 | Repair table "load" command. | Cedric Berger | |
2003-01-14 | consistent output and typo, grange@ ok | Anil Madhavapeddy | |
2003-01-14 | unified IP parser: | Henning Brauer | |
-move host(), set_ipmask and the ifa_* functions to pfctl_parser.[c|h] -extend host() to handle /mask itself, plus minor adjustments -use that in pfctl_table.c instead of coding the same shit again discussed w/ cedric@ ok cedric@ dhartmei@ | |||
2003-01-14 | A bit of consistency in error messages. Before regress commit :) | Cedric Berger | |
2003-01-13 | err() on all memory allocation failures | Camiel Dobbelaar | |
ok henning dhartmei | |||
2003-01-11 | Whitespace KNF | Ryan Thomas McBride | |
2003-01-11 | use errx instead of handcrufting the same with fprintf and exit | Henning Brauer | |
2003-01-11 | -use inet_net_pton to parse IPv4 addresses, gains us support for CIDR (10/8) | Henning Brauer | |
-remove a redundant strlen check ok cedric@ | |||
2003-01-11 | whitespace KNF _AGAIN_ | Henning Brauer | |
2003-01-11 | typo | Christian Weisgerber | |
2003-01-10 | Fix adding and deleting addresses in a table when there is a conflict with | Cedric Berger | |
the "negated" attribute of an address. The previous behaviour was incorrect in both cases (too strict for the add command and too permissive for the delete command). ok dhartmei@ | |||
2003-01-10 | Be a bit more strict when parsing options. | Cedric Berger | |
Disallow "pfctl -s rabbits" and friends. ok dhartmei@ | |||
2003-01-10 | More details about the -T flag. Suggested by Rukh <openbsd@rukh.net> | Cedric Berger | |
2003-01-10 | no return after err(3), errx -> err after calloc failure | Henning Brauer | |
andrushock at korovino.net via dhartmei@ | |||
2003-01-10 | print queue length for PRIQ, works now | Henning Brauer | |
2003-01-10 | fix thinko | Henning Brauer | |
2003-01-09 | no need for explicit numbering in enums | Henning Brauer | |
ok dhartmei@ | |||
2003-01-09 | knf | Daniel Hartmeier | |
2003-01-09 | strlcpy return checks. | Daniel Hartmeier | |
2003-01-09 | Check return values on the remaining strlcpy/strlcat. ok henning@ | Daniel Hartmeier | |
2003-01-09 | use a verbose flag in pfctl_show_altq instead of carrying around opts from | Henning Brauer | |
pfctl.c, and get rid of the #include "pfctl_parser.h" | |||
2003-01-09 | zap unneeded #include <errno.h> as seen by both of us while discussing | Henning Brauer | |
#include stuff with dhartmei@ | |||
2003-01-09 | support PRIQ in queue statistics | Henning Brauer | |
2003-01-09 | minor KNF | Henning Brauer | |
2003-01-09 | note about queue stats | Henning Brauer | |
2003-01-09 | first attack at pfctl queue statistics, to be displayed with pfctl -vsq | Henning Brauer | |
This commit is dedicated to the cute KLM girls who made part of this possible with giving me a seat in the plane where you actually have enough place to hack. Thanks, girls. ok markus@ dhartmei@ | |||
2003-01-09 | Document the various "default" settings. Some style and alphabetical | Hakan Olsson | |
reordering. | |||
2003-01-09 | Default-Phase-1-Configuration --> Default-phase-1-configuration | Hakan Olsson | |
2003-01-09 | Change "Default-Phase-2-Suites" --> "Default-phase-2-suites" | Hakan Olsson | |
2003-01-09 | Proper id_string for SET/ACK responder, plus attr payload fixes. | Hakan Olsson | |
2003-01-09 | Add support for active/inactive tablesets in the kernel. | Cedric Berger | |
Add table definition/initialisation construct in pfctl parser. Add and fix documentation for pf.4 and pf.conf.5. Tested on i386 and sparc64 by myself, macppc by Daniel. ok dhartmei@ | |||
2003-01-09 | Don't write past the end of the address buffer. Found by Theo. | Hakan Olsson | |
2003-01-09 | Add some #ifdef USE_ISAKMP_CFG, no need to compile in code that will | Hakan Olsson | |
never be used. | |||
2003-01-09 | Enable SET/ACK (ike-mode-cfg) when acting as responder. From Tomas | Hakan Olsson | |
Walpuski. | |||
2003-01-08 | check more strlcpy; camield@ | Theo de Raadt | |
2003-01-07 | Allow underscore at the beginning of strings, fixes | Daniel Hartmeier | |
pass all user _spamd which was refused as syntax error before. Reported by Joe Nall. ok henning@ | |||
2003-01-07 | the "default" alias for "normal" optimization in pf_hints is dead for some | Henning Brauer | |
time now... catched by david krause | |||
2003-01-07 | Remove table name hashing (pass the name in each ioctl instead), and | Daniel Hartmeier | |
introduce reference counting for tables, they are now automatically created and deleted through referencing rules. Diff partly from cedric@. ok mcbride@, henning@, cedric@ | |||
2003-01-06 | Fix some oversights with address pools for route-to/dup-to/reply-to | Ryan Thomas McBride | |
- copy key for src-hash - copy pool type (pools were being set to round-robin in all cases) + some minor knf. ok dhartmei@ | |||
2003-01-06 | typo: s/initalize/initialize | Chad Loder | |
2003-01-05 | spelling | Theo de Raadt | |
2003-01-05 | don't whine about missing altq support in the kernel in the -q case | Henning Brauer | |
ok dhartmei@ | |||
2003-01-05 | err after calloc failure, not errx | Henning Brauer | |
2003-01-05 | Move ifname from pf_addr to pf_addr_wrap, prepare pf_addr_wrap for table | Daniel Hartmeier | |
name. ok henning@, mcbride@, cedric@ | |||
2003-01-05 | err()/errx() do not return, errx() -> err() after calloc(), it sets errno. | Daniel Hartmeier | |
From Andrey Matveev. | |||
2003-01-04 | minor style | Henning Brauer | |
2003-01-04 | spelling | Theo de Raadt | |