Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-12-19 | The physical address of a pmap's segment table is only used to compute an | Miod Vallat | |
apr value used in pmap_activate(). So, rather than storing the address in the pmap structure, store the precomputed apr value... | |||
2003-12-19 | zap the msg_ struct we don't ever use | Henning Brauer | |
2003-12-19 | when sending a notification things actually work better if you copy error code | Henning Brauer | |
and suberr code into the message... really | |||
2003-12-19 | actually we need to init the configuration we receive in the reconfigure case | Henning 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-19 | conf->holdtime was not set to teh default value initially if no holdtime | Henning 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-19 | more const-correctness, ok mcbride@ | Daniel Hartmeier | |
2003-12-19 | Speed up sbrk() one cycle by removing an unnecessary register shuffling. | Miod Vallat | |
2003-12-19 | Pass SIGINT to dc process. | Otto Moerbeek | |
2003-12-19 | knf | Theo de Raadt | |
2003-12-19 | Do something sensible on ^C: unwind stack and be ready for new input. | Otto Moerbeek | |
2003-12-19 | Unbreak ramdisk kernel after tedu's changes. | Alexander Yurchenko | |
ok deraadt@ | |||
2003-12-19 | When 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-19 | Rework of the RDE config merge. This fixes problems with peers that | Claudio Jeker | |
where newer up. OK henning@ | |||
2003-12-19 | when adding a new peer during reconfiguration set its sock to -1. | Henning Brauer | |
misbehaviour found by claudio | |||
2003-12-19 | i wrote much of these, assert my copyright | Henning Brauer | |
2003-12-19 | update 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-19 | for 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 output | Jason McIntyre | |
- reference printf(1) for a list of C escapes | |||
2003-12-19 | don't bother sending a SESSION_DOWN imsg to the RDE if we are quitting, this | Henning 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-19 | fix getpwnam use; noticed by claudio@ | Henning Brauer | |
2003-12-19 | add an example showing how to print to standard error; | Jason McIntyre | |
suggested by otto@ | |||
2003-12-19 | document hw.{cpuspeed,setperf} sysctls; | Jason McIntyre | |
tweak and ok tedu@ | |||
2003-12-19 | rn_satsifies_leaf -> rn_satisfies_leaf | Brad Smith | |
from itojun@netbsd rev 1.15 ok deraadt@ | |||
2003-12-19 | Make this compile after the struct was reordered. OK tedu@ | Todd C. Miller | |
2003-12-19 | Add a check for time not flowing monotonically and just don't change | Todd 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-19 | remove extraneous space at the end of the _bgpd entry | Brad Smith | |
2003-12-19 | fix copyright | Henning Brauer | |
2003-12-19 | knf & 64-bit cleanup; henning ok | Theo de Raadt | |
2003-12-19 | for(p = something; p != NULL; p = p->next) is not going to fly if there is | Henning Brauer | |
a free(p) inside that for loop... | |||
2003-12-19 | assert copyright. i rewrite much of this | Theo de Raadt | |
2003-12-19 | Clean 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-18 | add 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-18 | oops; pointed out by bruno | Theo de Raadt | |
2003-12-18 | First step for configuration merges in the RDE. Currently this will not | Claudio Jeker | |
work correctly because the peer id changes on config reload. The code in the RDE per se should be OK. | |||
2003-12-18 | Save pf_status.hostid and pf_status.stateid in the DIOCCLRSTATUS | Ryan Thomas McBride | |
ioctl. Pointed out by dhartmei@ ok dhartmei@ | |||
2003-12-18 | Unbreak compile with no pfsync(4) device. | Ryan Thomas McBride | |
patch from Max Laier | |||
2003-12-18 | document 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-18 | TCP timestamp modulation (scrub reassemble tcp) fix from frantzen@ | Daniel Hartmeier | |
2003-12-18 | Fix for monotomic time, lasttb is now in sync with 'time'. ok otto@ | Dale Rahn | |
2003-12-18 | reset nconf to NULL after free(), from claudio | Henning Brauer | |
2003-12-18 | resolve compiler warnings, from Pyun YongHyeon, ok cedric@, mcbride@ | Daniel Hartmeier | |
2003-12-18 | document `b0' and `b1' attributes; | Jason McIntyre | |
2003-12-18 | random numbers are obtained via arc4random(3), not random(3); | Jason McIntyre | |
from FreeBSD PR 54879, forwarded by otto@; ok otto@ | |||
2003-12-18 | Permit ethernet multicast addresses, as used by some HA/failover solutions. ↵ | Hakan Olsson | |
Suggested by and ok markus@. | |||
2003-12-18 | Recognize NAT-D and NAT-OA payloads. markus@ ok. | Hakan Olsson | |
2003-12-18 | spls 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-18 | Don't add -I$(srcdir)/zlib to CFLAGS since the version of zlib included with | Todd C. Miller | |
cvs no longer matches ours. Fixes "compression initialization: error -6" as noticed by espie@ and others. | |||
2003-12-18 | cvs uses zlib, not gzip; remove a lie. OK deraadt@ | Todd C. Miller | |
2003-12-18 | Move -DDYNAMIC_CRC_TABLE into the main libz Makefile | Todd C. Miller | |
2003-12-18 | Mention the exchange name when giving up on a message. Suggested by | Hakan Olsson | |
Michael Coulter. |