summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-12-19The physical address of a pmap's segment table is only used to compute anMiod Vallat
apr value used in pmap_activate(). So, rather than storing the address in the pmap structure, store the precomputed apr value...
2003-12-19zap the msg_ struct we don't ever useHenning Brauer
2003-12-19when sending a notification things actually work better if you copy error codeHenning Brauer
and suberr code into the message... really
2003-12-19actually we need to init the configuration we receive in the reconfigure caseHenning Brauer
much earlier, on RECONF_CONF, and not on RECONF_DONE, to prevent an unneeded session down/up cycle for already established sessions.
2003-12-19conf->holdtime was not set to teh default value initially if no holdtimeHenning Brauer
was specified in teh config file. this was done correctly in the reconfiguration process... use a new function init_conf() to set defaults where needed; currently only holdtime, and call it both in the startup and the reconf case. ok claudio@
2003-12-19more const-correctness, ok mcbride@Daniel Hartmeier
2003-12-19Speed up sbrk() one cycle by removing an unnecessary register shuffling.Miod Vallat
2003-12-19Pass SIGINT to dc process.Otto Moerbeek
2003-12-19knfTheo de Raadt
2003-12-19Do something sensible on ^C: unwind stack and be ready for new input.Otto Moerbeek
2003-12-19Unbreak ramdisk kernel after tedu's changes.Alexander Yurchenko
ok deraadt@
2003-12-19When temporarily unlocking a pmap, do not release the spl as well.Miod Vallat
While there, get rid of that ugly PT_FREE() macro.
2003-12-19Rework of the RDE config merge. This fixes problems with peers thatClaudio Jeker
where newer up. OK henning@
2003-12-19when adding a new peer during reconfiguration set its sock to -1.Henning Brauer
misbehaviour found by claudio
2003-12-19i wrote much of these, assert my copyrightHenning Brauer
2003-12-19update for openssl enc:Jason McIntyre
- sort options - -p and -P also show salt - expand IV - remove -salt from the examples which decrypt - remove an example which doesn't work, and is not really helpful help from markus@
2003-12-19for our internal peer ID just use the peer's IP address for now.Henning Brauer
this collides with multiviews (which we don't have yet) and will have to be changed then, but allows us to progress much faster now. ok claudio@
2003-12-19- adjust some list widths for better postscript outputJason McIntyre
- reference printf(1) for a list of C escapes
2003-12-19don't bother sending a SESSION_DOWN imsg to the RDE if we are quitting, thisHenning Brauer
is at best pointless and usually just causes a fatal() when we try to send it as the pipe is already closed by the RDE then. this way we can at least finish the cleanup work, including notifications to the peers about us leaving.
2003-12-19fix getpwnam use; noticed by claudio@Henning Brauer
2003-12-19add an example showing how to print to standard error;Jason McIntyre
suggested by otto@
2003-12-19document hw.{cpuspeed,setperf} sysctls;Jason McIntyre
tweak and ok tedu@
2003-12-19rn_satsifies_leaf -> rn_satisfies_leafBrad Smith
from itojun@netbsd rev 1.15 ok deraadt@
2003-12-19Make this compile after the struct was reordered. OK tedu@Todd C. Miller
2003-12-19Add a check for time not flowing monotonically and just don't changeTodd C. Miller
p->p_rtime in this case instead of zeroing it; based on an idea from nordin@. Also add a printf about microtime() not being monotonic for this case (from miod@) #ifdef DIAGNOSTIC. This version OK otto@
2003-12-19remove extraneous space at the end of the _bgpd entryBrad Smith
2003-12-19fix copyrightHenning Brauer
2003-12-19knf & 64-bit cleanup; henning okTheo de Raadt
2003-12-19for(p = something; p != NULL; p = p->next) is not going to fly if there isHenning Brauer
a free(p) inside that for loop...
2003-12-19assert copyright. i rewrite much of thisTheo de Raadt
2003-12-19Clean up PackageLocator so it looks somewhat more object-oriented.Marc Espie
Most importantly, put all the state information into the created object, so that the actual archive can be closed, later reopened, and scanned until the correct file is found. This will be used to allow retrieving packages through ftp without keeping loads of connections opened because of dependency resolving. Approved by fries and naddy.
2003-12-18add new hw sysctls, cpuspeed and setperf to control cpu frequency.Ted Unangst
convert longrun support to use new sysctls. add enhanced speedstep support, based on code by Michael Eriksson. idea, help testing & ok deraadt@
2003-12-18oops; pointed out by brunoTheo de Raadt
2003-12-18First step for configuration merges in the RDE. Currently this will notClaudio Jeker
work correctly because the peer id changes on config reload. The code in the RDE per se should be OK.
2003-12-18Save pf_status.hostid and pf_status.stateid in the DIOCCLRSTATUSRyan Thomas McBride
ioctl. Pointed out by dhartmei@ ok dhartmei@
2003-12-18Unbreak compile with no pfsync(4) device.Ryan Thomas McBride
patch from Max Laier
2003-12-18document various aspects of awk behaviour:Jason McIntyre
- when newlines are permissible - effects of null RS - $NF can be used to find value of last field - -F [ ] can be used to set FS to a single space - t and \t are synonyms when used with FS. use [t] for a literal `t'. - make [prog | -f profile] optional again in SYNOPSIS Also move the functions to the end of the page for a more logical layout.
2003-12-18TCP timestamp modulation (scrub reassemble tcp) fix from frantzen@Daniel Hartmeier
2003-12-18Fix for monotomic time, lasttb is now in sync with 'time'. ok otto@Dale Rahn
2003-12-18reset nconf to NULL after free(), from claudioHenning Brauer
2003-12-18resolve compiler warnings, from Pyun YongHyeon, ok cedric@, mcbride@Daniel Hartmeier
2003-12-18document `b0' and `b1' attributes;Jason McIntyre
2003-12-18random numbers are obtained via arc4random(3), not random(3);Jason McIntyre
from FreeBSD PR 54879, forwarded by otto@; ok otto@
2003-12-18Permit ethernet multicast addresses, as used by some HA/failover solutions. ↵Hakan Olsson
Suggested by and ok markus@.
2003-12-18Recognize NAT-D and NAT-OA payloads. markus@ ok.Hakan Olsson
2003-12-18spls do not protect cpu_itmr and thus time might jump back sometimes due to ↵Michael Shalayeff
cpu_itmr modified to a higher value than a read itmr; found and testing by miod@
2003-12-18Don't add -I$(srcdir)/zlib to CFLAGS since the version of zlib included withTodd C. Miller
cvs no longer matches ours. Fixes "compression initialization: error -6" as noticed by espie@ and others.
2003-12-18cvs uses zlib, not gzip; remove a lie. OK deraadt@Todd C. Miller
2003-12-18Move -DDYNAMIC_CRC_TABLE into the main libz MakefileTodd C. Miller
2003-12-18Mention the exchange name when giving up on a message. Suggested byHakan Olsson
Michael Coulter.