summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-02-07Dynamic linker support for arm. non-lazy binding works.Dale Rahn
2004-02-07syncTheo de Raadt
2004-02-07new fxp; cmetzTheo de Raadt
2004-02-07Use the offset provided to us by m_pulldown(), rather than using size ofRyan Thomas McBride
ip and pfsync headers. This makes us behave correctly if the packet is spread across multiple mbufs (which does not appear to happen in practice).
2004-02-07Copy arm/t-netbsd removing the shared libgcc pieces, suggested by espieDale Rahn
2004-02-07when connected routes show up at runtime we have to set ifindex in struct kifHenning Brauer
2004-02-07houps, fetchtable() had the default route special cased... bad.Henning Brauer
sin_len == 0 here too.
2004-02-07the sockaddr holding the netmask and advertised by rtm_addrs mightHenning Brauer
mave sa_len == 0 to indicate a mask of /0
2004-02-07sin_family in the sockaddr_n representing the netmask we sniffed on theHenning Brauer
routing socket is meaningless. so we're better off not checking it.
2004-02-06Use EVP_CIPHER_CTX_key_length for key length. ok markus@Darren Tucker
2004-02-06use the kernel default for buf size. no behavior change by default.Ted Unangst
ok canacar@ mcbride@
2004-02-06as seen in netbsd. crank bpf sizes to adapt to faster networks.Ted Unangst
max size goes to 2MB, default goes to 32k. ok canacar@ mcbride@
2004-02-06- options description cleanupJason McIntyre
- 10x not 6 for mkstemp(3)
2004-02-06default db.log=1. as noted by Sam Smith, this is more useful. mickey concurredTed Unangst
2004-02-06permit IPv6-only operation (permit AF_INET6 bind(2) without IPv4 address).Jun-ichiro itojun Hagino
found by todd fries. markus ok
2004-02-06use a struct bgpd_addr for the address token instead of a in_addr, claudio okHenning Brauer
2004-02-06initial cut at the filtering language.Henning Brauer
structs etc to describe a rule, filter rule list management parser groks filter defs now. claudio ok, discussion & help also jakob theo
2004-02-06make old & new SYSENTRY macrosTheo de Raadt
2004-02-06fix alias definition, was backwards.Dale Rahn
2004-02-06No SUBDIRs here.Dale Rahn
2004-02-06fix machine/machine_arch, machine_arch should be arm for all arm systemsDale Rahn
and machine needs to be not set by arch/arm, but by cats.
2004-02-06Make this at least partially useful. (unbreak)Dale Rahn
2004-02-06`numbits' arg to openssl dsaparam does not have to be the last argumentJason McIntyre
specified;
2004-02-06more Knall & Rauch -> ANSI C, KNF and stuff that makes this a bit moreHenning Brauer
readable. no effect on the binary. From: Emil Mikulic <emikulic@dmr.ath.cx>
2004-02-06typo from Tamas Tevesz, via nick@;Jason McIntyre
2004-02-06Dont compress bsd.rd dont know if ABLE can cope, no bootloader on cats yet.Dale Rahn
2004-02-06cats, you idiot.Dale Rahn
2004-02-06remove silly stub file for alpha and only try to compile _atomic_lock.cBrad Smith
if it actually exists. ok marc@
2004-02-06some cpus start to have a NX oriented PGEX_ITheo de Raadt
2004-02-05allocate curpeer little earlier.Henning Brauer
there's a rather obscure error path where teh later allocation causes trouble, claudio ok
2004-02-05Decrement reference count in error case if uvm_map(9) fails and weTodd C. Miller
had previously increased the reference count. Should not happen, but... From dhartmei@; ok deraadt@
2004-02-05syncTodd T. Fries
2004-02-05rm SunOS support, ok deraadt@, docs work in progressTodd T. Fries
2004-02-05Don't print two confusing error messages, print a single clear one.Otto Moerbeek
ok deraadt@ hshoexer@ avsm@
2004-02-05Correct a reference counting bug in shmat(2); adapted from FreeBSD.Todd C. Miller
OK deraadt@ tedu@ dhartmei@
2004-02-05expose two more functionsTheo de Raadt
2004-02-05pfctl_update_qstats() returns -1 on error and the # of queues otehrwiseHenning Brauer
fix a check of the return value to cope woth that inspired by PR3675 from Marc Huber <Marc.Huber@web.de>, fixed slightly different.
2004-02-05fix ETA for > 4GB; bugzilla #791; ok henning@ deraadt@Markus Friedl
2004-02-05error message tuningHenning Brauer
more power!
2004-02-05introduce group IDs. will be needed for filtering (or rather, ease thingsHenning Brauer
there) just assign them from the neighbor ID pool - fortunately, that is rather simple, we just have to make sure that all members of the group and (later) all filter rules pointing to the group agree on the ID, but it does not need to stay the same across config reloads. ok claudio@
2004-02-05make .Nm match .Dt to avoid screwy apropos(1) output;Jason McIntyre
found by pb@
2004-02-05xlint compatible headers. (non-gcc)Dale Rahn
2004-02-05isours() returns a pointer and thus should be checked against NULL not 0Henning Brauer
From: Emil Mikulic <emikulic@dmr.ath.cx>
2004-02-05plug memory leak; PR3668 Emil Mikulic <emikulic@dmr.ath.cx>Henning Brauer
2004-02-05plug memory leak; PR3668 Emil Mikulic <emikulic@dmr.ath.cx>Henning Brauer
2004-02-05small logging cleanup and improvement requested by markusHans-Joerg Hoexer
ok ho@ markus@
2004-02-052 new cpuid ecx features in prescottTheo de Raadt
2004-02-05some small cleanup;Jason McIntyre
ok mcbride@
2004-02-05Pass SIGALRM through to privsep child if LoginGraceTime expires. ok markus@Darren Tucker
2004-02-05fix the conversion of the insn that comes from gen_load_multiple. ARM ↵Hiroaki Etoh
processor defines HAVE_load_multiple and uses this gen_load_multiple. ok pvalchev, drahn