summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-06-08Provide type information for some symbols. Should fix vmstat -i.Artur Grabowski
2002-06-08regression test for macro concatenationHenning Brauer
ok dhartmei@
2002-06-08document macro concatenationHenning Brauer
ok dhartmei@
2002-06-08allow macro concatenation likeHenning Brauer
webservers = "{ 10.0.0.1, 10.0.0.7, 10.0.0.8, " webservers += " 10.0.0.17, 10.0.0.25, 10.0.0.37 }" ok frantzen@, dhartmei@
2002-06-08correctnessChris Cappuccio
2002-06-08Make state timeouts configurable per rule, likeDaniel Hartmeier
pass in from any to any port www keep state (tcp.established 60) ok frantzen@
2002-06-08After much horrible and painful slogging through asn1 code,Bob Beck
this fixes the source of connection problems with ssl/tls connections between sparc64 and other things. The punchline, we just found a bug in floating point emulation on sparc64 when this script produces off-by-one output on sparc64. This fix is annoyingly easy for the effort expended.
2002-06-08you too, out.Federico G. Schwindt
2002-06-08sayonara, you should not be here; reported by wcobb@Federico G. Schwindt
2002-06-08remove FallBackToRsh/UseRshMarkus Friedl
2002-06-08just warn about Deprecated options for nowMarkus Friedl
2002-06-08Always keep the symbols, don't hand that memory to the VM system.Artur Grabowski
In most cases we'll have either DDB or /dev/ksyms and if someone really needs the memory they'll strip the kernel. Fixes alpha/2705.
2002-06-08deprecate FallBackToRsh and UseRsh; patch from djm@Markus Friedl
2002-06-08nuke ptrace commentMarkus Friedl
2002-06-08only accept 20 byte session idsMarkus Friedl
2002-06-08explicitely set inet for localhost and lo0 tests, test would fail ifHenning Brauer
localhost resolves to ::1 ok dhartmei@
2002-06-08comment and error message cleanup, from Brian Poole <raj@cerias.purdue.edu>Bob Beck
2002-06-08regression test from $srcaddr & friends in rule labelsHenning Brauer
ok dhartmei@
2002-06-08use weak aliases whenever is possible; millert@ ok.Federico G. Schwindt
2002-06-08Remove this horror DIAGNOSTIC define. It was just ugly when itArtur Grabowski
was introduced, but now it causes crashes when kernels are built without DIAGNOSTIC. Instead of trying to debug this incorrect code, I'm just removing this abomination.
2002-06-08Let this build when the internal DIAGNOSTIC define is removed.Artur Grabowski
2002-06-08document $proto, $nr in rule labelsHenning Brauer
add example ok dhartmei@
2002-06-08Remove some debugging codeTodd C. Miller
2002-06-08Disable the screen burner if it is enabled and X starts, and reinable uponDale Rahn
leaving X, if it was enabled. looked at by miod, mickey.
2002-06-08Missing newline at end of file. from krauseDale Rahn
2002-06-08spool dirs should be group daemon, mode 0775Todd C. Miller
2002-06-08Remove setuid root from lp*. lpr needs to be setuid daemon so theTodd C. Miller
files it creates are not owned by the user spooling them but the others (lpc, lpq, lprm) can get away with setgid daemon. lpd runs as user daemon for most things, only changing its uid to 0 for things that must be done as root. For the time being, don't require connections to come from a reserved port since lpq/lpr/lprm can't acquire that w/o setuid root. In the near future we will have a mechanism for select non-root processes to grab reserved ports. The upshot of this is that spool directories must be writable by group daemon and the files within the spool dirs must be owned by daemon.
2002-06-08expand $nr -> rule number in rule labelsHenning Brauer
okay dhartmei@, frantzen@
2002-06-08Make gem MI because it is present on macppc and sparc64. ok aaron@Dale Rahn
2002-06-08expand $proto in rule labelsHenning Brauer
okay frantzen@ dhartmei@
2002-06-08. include,Marc Espie
variable modifiers: standard vs non-standard. ok miod@, millert@
2002-06-08rl* at cardbusAaron Campbell
2002-06-08Note support for RealTek-based CardBus cards.Aaron Campbell
2002-06-08Document RealTek CardBus support.Aaron Campbell
2002-06-08Add support for RealTek 8129/8139-based CardBus cards; mostly from NetBSD.Aaron Campbell
deraadt@, jasoni@ ok. Thanks to niklas@ for donating a card for testing.
2002-06-08typoJun-ichiro itojun Hagino
2002-06-08syncAaron Campbell
2002-06-08Add some RealTek card ID's; from NetBSD.Aaron Campbell
2002-06-08in6_len2mask is a duplicate of in6_prefixlen2mask. unify. sync w/kameJun-ichiro itojun Hagino
2002-06-08Macppc switches to gem from gm. Use the MI, better, Gig-E capable driver.Dale Rahn
2002-06-08print address; millert@ ok.Federico G. Schwindt
2002-06-08on SIOCAIFADDR_IN6 check if sin6_len is sane. sync w/kameJun-ichiro itojun Hagino
2002-06-07kill register; ok with itojunjasoni
2002-06-07use TAILQ_FOREACH macro; ok angelosjasoni
2002-06-07Multicast fixes, Gig-E support, mostly from netbsd. ok jason@Dale Rahn
2002-06-07syncTheo de Raadt
2002-06-07knfJason Wright
2002-06-07Handle realloc() failure gracefully. Terminates with err() anyway in thisDaniel Hartmeier
case, but we don't want to trigger "p = realloc(p," grepping causing false alarms here.
2002-06-07Use LIST macros instead of accessing field members directly; jason@ okAaron Campbell
2002-06-07Detect wrap-around of timeout and set it to its maximum value. HackyAngelos D. Keromytis
way of getting the max value attributed to millert@