Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2004-06-20 | zx(4) support for sparc64, tested on an Ultra 2. | 5 | -5/+832 | ||
2004-06-20 | allow for receival of up to 16 fds at once; after discussion with theo | 1 | -3/+4 | ||
2004-06-20 | make vnconfig use the new VNDIOCGET ioctl to retrieve information about | 1 | -2/+55 | ||
the status of vnode disks, ok millert@ | |||||
2004-06-20 | argh, don't want to shutdown the socket in the parent after sending, | 1 | -4/+2 | ||
just plain close | |||||
2004-06-20 | add the VNDIOCGET ioctl to vnode disks, ok millert@ | 2 | -9/+59 | ||
2004-06-20 | - do not use __attribute__((volatile)) as its a synonym for __dead nowadays | 3 | -10/+11 | ||
- bad format string "\%s" -> "%s" in print-ike.c fixes parsing using CIL, discussed with millert@ niklas@ | |||||
2004-06-20 | implement file descriptor passing in the imsg/msgbuf framework, and use | 7 | -68/+188 | ||
it to let the main process to prepare new listening sockets (socket() and bind()) on behalf of the session engine, which of course cannot bind() to ports < 1024 any more once it dropped privileges. with some help from theo, claudio ok | |||||
2004-06-20 | add bounds check for src pointer in bcopy(3) as well as dest pointer, | 1 | -1/+2 | ||
noticed by millert@ | |||||
2004-06-20 | $OpenBSD$, ok niklas@ | 1 | -0/+2 | ||
2004-06-20 | remove timeout_*() again; ok brad@ | 1 | -7/+1 | ||
2004-06-20 | message_parse_payloads should accept payloads in the private range. | 1 | -13/+17 | ||
While here, also cleanup some messages. | |||||
2004-06-20 | The pseudo-device keyword takes only one count as an argument. | 4 | -8/+4 | ||
2004-06-20 | filter passed env vars at slave in connection sharing case; ok markus@ | 1 | -8/+36 | ||
2004-06-20 | boundary-check memcpy and friends. henning ok | 1 | -9/+21 | ||
2004-06-20 | goodbye TUBA. deraadt ok | 8 | -963/+4 | ||
2004-06-20 | Make the payload array in struct message dynamic, since we need to handle | 12 | -96/+161 | ||
payloads in the private range, such as the pre-RFC NAT-D/NAT-OA. Replace TAILQ_FIRST(&msg->payload[i]) instances with function calls. | |||||
2004-06-20 | Fix some comment typos I noticed while reading this code. | 1 | -3/+3 | ||
2004-06-20 | fix the "option dhcp-client-identifier" hex example | 1 | -2/+2 | ||
From: Marco Munari <mar@i.am> in PR3824 | |||||
2004-06-20 | Do not go on if the -C option caused a failed chdir. ok millert@ henning@ | 1 | -3/+5 | ||
2004-06-20 | NAT-Traversal for isakmpd. Work in progress... | 22 | -562/+2206 | ||
hshoexer@ ok. | |||||
2004-06-20 | A start towards Dead Peer Detection (DPD) support, as specified in RFC 3706 | 6 | -13/+461 | ||
2004-06-20 | Some vendors send the last Aggressive Mode message unencrypted, which we | 1 | -3/+9 | ||
should accept. Problem noted by alex at vbone.net. hshoexer@ ok. | |||||
2004-06-20 | To make debugging the unprivileged child process easier, make 'isakmpd -dd' | 3 | -8/+19 | ||
pause just after privsep; print the PIDs and wait for SIGCONT. hshoexer@ ok | |||||
2004-06-20 | nope, tree breakage in libpthread. too tough to run a make build? | 4 | -45/+67 | ||
2004-06-20 | Move schedstate_percpu into sched.h so that we don't have to include | 4 | -67/+45 | ||
proc.h in cpu.h on __HAVE_CPU_INFO architectures. cpu.h is usually included in param.h. This also removes the horrible kludge with ifdef SYS_PROC_H in sched.h by simply converting the inline functions into macros. With a few suggestions from nordin@ deraadt@ ok | |||||
2004-06-20 | pop3 over tcp6 | 1 | -1/+2 | ||
2004-06-20 | make popa3d (inetd mode) address family neutral (= IPv6 support). | 1 | -6/+14 | ||
from popa3d patch by kame | |||||
2004-06-20 | If all default sets have been successfully installed, make [done] the | 1 | -2/+6 | ||
default answer to 'Where are the install sets?'. Requested by various, most recently Henning and Theo. | |||||
2004-06-20 | Silence intr_establish a bit more; makes the dmesg on U2 suddenly edible. | 1 | -4/+7 | ||
ok deraadt@ | |||||
2004-06-20 | It's supposed to be #ifdef DIAGNOSTIC, not #ifdef DIAGONSTIC. miod@ tested+ok | 1 | -3/+3 | ||
2004-06-20 | Another merge error from smp branch. | 1 | -2/+2 | ||
Found by otto@drijf.net deraadt@ ok | |||||
2004-06-20 | Merge error in smp merge. It's a miracle that people haven't noticed the | 1 | -2/+2 | ||
scheduling errors on non-i386 yet. deraadt@ aaron@ ok | |||||
2004-06-20 | ICE with gcc3/propolice -O on macppc fixes: | 1 | -0/+2 | ||
- INSN_CODE and LOG_LINKS attributes should be copied from the first insn of splitted insns. ok pvalchev@ and sturm@ | |||||
2004-06-20 | Fix description of the cpuid keyword. The current wording is misleading since | 1 | -2/+2 | ||
the CPU ID *can* be 0 on SMP systems (meaning the first processor). miod@ ok | |||||
2004-06-20 | Fix inversed logic in handling the "nowait/waitok" flags. Bugs in two places | 2 | -4/+25 | ||
in malloc_debug. Also, add an assert-like function to sprinkle in code you're debugging at the moment. Those asserts are _not_ supposed to be ever comitted, just use them while debugging. beck@ ok | |||||
2004-06-20 | undo mbuf cluster breakage that causes free'ed packets to show up on the | 1 | -22/+9 | ||
input queues when using dhcp and hostap wi, or xl, or fxp.... ok art@ | |||||
2004-06-20 | fix EHCI_DEBUG crud; aratchov@magphy.ujf-grenoble.fr | 1 | -4/+4 | ||
2004-06-19 | sync (RTF_MPATH). | 1 | -1/+2 | ||
2004-06-19 | require RTF_MPATH to enter a multipath route with RTM_ADD. | 9 | -37/+56 | ||
route(8) takes a new -mpath modifier to enter a multipath route. requested deraadt@, ok itojun@ mcbride@ millert@ | |||||
2004-06-19 | Trim includes. | 1 | -3/+1 | ||
2004-06-19 | No "machine prom" ddb command on the Luna. | 1 | -13/+1 | ||
2004-06-19 | Share common ddb files accross m88k platforms. | 9 | -2181/+9 | ||
2004-06-19 | Remove unused and misleading defines. | 1 | -7/+3 | ||
2004-06-19 | starting TDM T1->E3->whatever media interface model we will attempt | 1 | -1/+59 | ||
to program to over the next week; thanks for feedback in developing this from cedric, claudio, chris, alex | |||||
2004-06-19 | save curproc for further reference, otherwise we may end up in lockmgr() | 1 | -2/+2 | ||
with no process context. ok miod@. closes pr 3214. | |||||
2004-06-19 | avoid a null pointer dereference if the .DEFAULT target has no commands; | 1 | -2/+3 | ||
ok espie@ | |||||
2004-06-18 | Correct range validation in sio_iointr(). | 1 | -2/+2 | ||
2004-06-18 | On architectures which have strict alignment, shift the entire mbuf chain by | 2 | -4/+60 | ||
ETHER_ALIGN bytes when jumbo packets are enabled (mtu > ETHERMTU). ok henric@ (slightly different diff) | |||||
2004-06-18 | Regen. | 2 | -6/+15 | ||
2004-06-18 | Add /dev/crypto support. | 2 | -2/+6 | ||