Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-04-09 | Less noise for missing crl dir, demoted to debug message. | Hakan Olsson | |
2003-04-09 | on "pfctl -vvss", print the anchor rule number when there is one. | Cedric Berger | |
ok dhartmei@ henning@ | |||
2003-04-09 | document that rewind/eject features of tape devices depend on name of | Jason McIntyre | |
tape device; reference st(4) for an explanation. diff from Olivier Cherrier; ok millert@ | |||
2003-04-08 | missing .Fl macro for -a option; | Jason McIntyre | |
2003-04-08 | fix null deref in error syslogging | Michael Shalayeff | |
2003-04-07 | strlcat; ok millert | Theo de Raadt | |
2003-04-07 | strlcat, and it counted srclen, not dstlen; ok millert | Theo de Raadt | |
2003-04-07 | Catch and refuse invalid icmp codes (> 255). ok pb@, mpech@. | Daniel Hartmeier | |
2003-04-06 | strcat->strlcat, ho@ ok | Anil Madhavapeddy | |
2003-04-06 | strcpy/strcat -> strlcpy/strlcat conversion; henning@, tedu@ ok | Anil Madhavapeddy | |
2003-04-06 | string handling; ok millert | Theo de Raadt | |
2003-04-05 | ease netmask handling a bit | Henning Brauer | |
input theo, ok dhartmei@ | |||
2003-04-05 | o replace a strncpy + manual NUL terminate w/ strlcpy | Todd C. Miller | |
o remove NUL termination of d_packname since it is not needed. krw@ OK | |||
2003-04-05 | allow queue specs to be limited to certain interfaces. | Henning Brauer | |
altq on { $if0 $if1 $if2 $if3 } priq bandwidth 10Mb queue { one two } queue one priority 1 priq(default) queue two on $if0 priority 15 queue two on ! $if0 priority 0 ok dhartmei@ | |||
2003-04-05 | whitespace KNF | Henning Brauer | |
2003-04-04 | simple string fixes; ok matthieu tedu tdeval | Theo de Raadt | |
2003-04-04 | clean up: | Henning Brauer | |
instead of letting the lexer interpret '<' '>' '=' '>=' '<=' and return them as PF_OP_LT, PF_OP_GT etc etc etc in PORTUNARY, just let the lexer return '<' '>' and '=' literally, and in the few cases where the old PORTUNARY was really used like originally intended, replace that by a new unaryop yacc target. in all other cases that gets rid of quite some checks wether PORTUNARY is really < and nothing else etc etc etc. ok cedric@ deraadt@ | |||
2003-04-04 | knf & one snprintf; tedu ok | Theo de Raadt | |
2003-04-04 | snprintf & strlcpy; tedu ok | Theo de Raadt | |
2003-04-03 | trivial snprintf | Theo de Raadt | |
2003-04-03 | Simplify pfctl printing code. | Cedric Berger | |
ok dhartmei@ henning@ | |||
2003-04-03 | use a simple linear queue ID assignment algorithm for PRIQ like we do for | Henning Brauer | |
cbq already. together with the previous change that means it is now possible to have differently named priq queues on different interfaces with the same priorities and packets end up in the right queues. ok dhartmei@ kjc@ | |||
2003-04-03 | Table stats are reliable now. | Cedric Berger | |
2003-04-03 | explicitly include <sys/limits.h> for INT_MAX. | Kenjiro Cho | |
2003-04-02 | no \n w/ errx(3), reminded by andrushock | Henning Brauer | |
2003-04-02 | Xenu made me fix the strcpy; millert ok | Theo de Raadt | |
2003-04-02 | fifo -> FIFO | Jason McIntyre | |
ok millert@ | |||
2003-04-02 | nfs -> NFS | Jason McIntyre | |
2003-04-02 | better error handling | Henning Brauer | |
2003-04-02 | better error message | Henning Brauer | |
2003-04-02 | snprintf; drahn ok | Theo de Raadt | |
2003-03-30 | asprintf | Henning Brauer | |
partitially from David Hill <david at phobia.ms> ok deraadt@ | |||
2003-03-30 | snprintf | Theo de Raadt | |
2003-03-30 | typos/grammar | Jason Peel | |
these are the only instances of s/WSKBD/WDKBD/ needed in the tree; ok miod@ | |||
2003-03-30 | snprintf; millert ok | Theo de Raadt | |
2003-03-30 | snprintf | Theo de Raadt | |
2003-03-28 | one more const was missing | Henning Brauer | |
2003-03-28 | assign qid early for priq too | Henning Brauer | |
2003-03-28 | add a whole bunch of display types (will be used by the accelerated X | Jason Wright | |
stuff coming soon to a tree near you). | |||
2003-03-27 | minor tweaks from Andrey Matveev, ok henning@ and cedric@ | Daniel Hartmeier | |
2003-03-27 | lotsa const char * | Henning Brauer | |
from David Hill <david at phobia.ms> a while ago | |||
2003-03-27 | introduce a "yesno" target. eases code a bit and yes is no keyword any more. | Henning Brauer | |
2003-03-27 | handle invalid priq/cbq flags better and give a nice error message | Henning Brauer | |
2003-03-27 | default, borrow, ecn, red and rio are no keywords any more. use STRING and | Henning Brauer | |
strcmp instead. | |||
2003-03-27 | switch symset/symget to TAILQ instead of using hand baked lists | Henning Brauer | |
ok dhartmei@ cedric@ | |||
2003-03-24 | Add missing return. Fix following buglet: | Cedric Berger | |
# echo "pass in from <veryLONGtableNAME>" | pfctl -nvf- pass in from <veryLONGtableNAME>/0 to any | |||
2003-03-21 | document ceccerrs and cecclast for sparc64 | Jason Wright | |
2003-03-21 | document [initiator-id] section; richb@timestone.com.au; ok ho@, jmc@ | Markus Friedl | |
2003-03-19 | inet_net_pton acts weird when it comes to multicast addresses. so pass the | Henning Brauer | |
netmask given by the OP to host_v4(), and in case it wasn't specified, do not trust inet_net_pton telling is it is a /4 but use /32. otherwise, "pass in from 224.0.0.6" suddenly became "pass in from 224.0.0.0/4", which is clearly not the desired result. inet_net_pton behaviour under investigation, using the least intrusive fix for now. found after bug report From: Julien Bordet <zejames@greyhats.org> via dhartmei ok daniel cedric | |||
2003-03-19 | kill the address token and move the host() invocation up to the host token, | Henning Brauer | |
so that host() always gets the full address to be parsed including the netmask instead of applying the netmask afterwards. this could break some edge cases and was broken since the (interface)/24 fix. new token dynaddr for, well, dynaddr, and apply an eventually given netmask afterwards in the host token just in this case. found after bug report From: Julien Bordet <zejames@greyhats.org> via dhartmei ok daniel cedric |