summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* message_parse_payloads should accept payloads in the private range.ho2004-06-201-13/+17
| | | | While here, also cleanup some messages.
* The pseudo-device keyword takes only one count as an argument.aaron2004-06-204-8/+4
|
* filter passed env vars at slave in connection sharing case; ok markus@djm2004-06-201-8/+36
|
* boundary-check memcpy and friends. henning okitojun2004-06-201-9/+21
|
* goodbye TUBA. deraadt okitojun2004-06-208-963/+4
|
* Make the payload array in struct message dynamic, since we need to handleho2004-06-2012-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.
* Fix some comment typos I noticed while reading this code.aaron2004-06-201-3/+3
|
* fix the "option dhcp-client-identifier" hex examplehenning2004-06-201-2/+2
| | | | From: Marco Munari <mar@i.am> in PR3824
* Do not go on if the -C option caused a failed chdir. ok millert@ henning@niklas2004-06-201-3/+5
|
* NAT-Traversal for isakmpd. Work in progress...ho2004-06-2022-562/+2206
| | | | hshoexer@ ok.
* A start towards Dead Peer Detection (DPD) support, as specified in RFC 3706ho2004-06-206-13/+461
|
* Some vendors send the last Aggressive Mode message unencrypted, which weho2004-06-201-3/+9
| | | | should accept. Problem noted by alex at vbone.net. hshoexer@ ok.
* To make debugging the unprivileged child process easier, make 'isakmpd -dd'ho2004-06-203-8/+19
| | | | | pause just after privsep; print the PIDs and wait for SIGCONT. hshoexer@ ok
* nope, tree breakage in libpthread. too tough to run a make build?deraadt2004-06-204-45/+67
|
* Move schedstate_percpu into sched.h so that we don't have to includeart2004-06-204-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
* pop3 over tcp6itojun2004-06-201-1/+2
|
* make popa3d (inetd mode) address family neutral (= IPv6 support).itojun2004-06-201-6/+14
| | | | from popa3d patch by kame
* If all default sets have been successfully installed, make [done] thekrw2004-06-201-2/+6
| | | | | | default answer to 'Where are the install sets?'. Requested by various, most recently Henning and Theo.
* Silence intr_establish a bit more; makes the dmesg on U2 suddenly edible.miod2004-06-201-4/+7
| | | | ok deraadt@
* It's supposed to be #ifdef DIAGNOSTIC, not #ifdef DIAGONSTIC. miod@ tested+okaaron2004-06-201-3/+3
|
* Another merge error from smp branch.art2004-06-201-2/+2
| | | | | Found by otto@drijf.net deraadt@ ok
* Merge error in smp merge. It's a miracle that people haven't noticed theart2004-06-201-2/+2
| | | | | | scheduling errors on non-i386 yet. deraadt@ aaron@ ok
* ICE with gcc3/propolice -O on macppc fixes:etoh2004-06-201-0/+2
| | | | | | - INSN_CODE and LOG_LINKS attributes should be copied from the first insn of splitted insns. ok pvalchev@ and sturm@
* Fix description of the cpuid keyword. The current wording is misleading sinceaaron2004-06-201-2/+2
| | | | the CPU ID *can* be 0 on SMP systems (meaning the first processor). miod@ ok
* Fix inversed logic in handling the "nowait/waitok" flags. Bugs in two placesart2004-06-202-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
* undo mbuf cluster breakage that causes free'ed packets to show up on thebeck2004-06-201-22/+9
| | | | | input queues when using dhcp and hostap wi, or xl, or fxp.... ok art@
* fix EHCI_DEBUG crud; aratchov@magphy.ujf-grenoble.frderaadt2004-06-201-4/+4
|
* sync (RTF_MPATH).cedric2004-06-191-1/+2
|
* require RTF_MPATH to enter a multipath route with RTM_ADD.cedric2004-06-199-37/+56
| | | | | route(8) takes a new -mpath modifier to enter a multipath route. requested deraadt@, ok itojun@ mcbride@ millert@
* Trim includes.miod2004-06-191-3/+1
|
* No "machine prom" ddb command on the Luna.miod2004-06-191-13/+1
|
* Share common ddb files accross m88k platforms.miod2004-06-199-2181/+9
|
* Remove unused and misleading defines.miod2004-06-191-7/+3
|
* starting TDM T1->E3->whatever media interface model we will attemptderaadt2004-06-191-1/+59
| | | | | to program to over the next week; thanks for feedback in developing this from cedric, claudio, chris, alex
* save curproc for further reference, otherwise we may end up in lockmgr()pedro2004-06-191-2/+2
| | | | with no process context. ok miod@. closes pr 3214.
* avoid a null pointer dereference if the .DEFAULT target has no commands;robert2004-06-191-2/+3
| | | | ok espie@
* Correct range validation in sio_iointr().miod2004-06-181-2/+2
|
* On architectures which have strict alignment, shift the entire mbuf chain bymcbride2004-06-182-4/+60
| | | | | | ETHER_ALIGN bytes when jumbo packets are enabled (mtu > ETHERMTU). ok henric@ (slightly different diff)
* Regen.miod2004-06-182-6/+15
|
* Add /dev/crypto support.miod2004-06-182-2/+6
|
* Fix jumbo frames.mcbride2004-06-181-4/+12
| | | | | | | - Implement SIOCSIFMTU ioctl. - Remove from the free list instead of the inuse list when allocating jumbo buffers. - Use TI_JUMBO_FRAMELEN as the size argument to bus_dmamap_create();
* Pass MAX_JUMBO_FRAME_SIZE as the size argument of bus_dmamap_create(),mcbride2004-06-181-3/+3
| | | | | | fixes sending of jumbo frames. ok henric@ drahn@
* simplify license, ok niels matthieuhenning2004-06-181-27/+12
|
* Unbreak handling of standard diffs (which have an empty context).otto2004-06-181-4/+9
| | | | ok @millert
* Make this better reflect reality; OK and with help from Cedricmillert2004-06-181-38/+47
|
* Avlab PCI 4 Serial, takashi@crazyhack.net in PR3823henning2004-06-181-1/+13
|
* synchenning2004-06-182-2/+14
|
* Avlab 4 Serial puchenning2004-06-181-1/+5
|
* clientloop.cdjm2004-06-182-6/+7
|
* trim synopsis for -S, allow -S and -oControlMaster, -MM means 'ask'; ok djmmarkus2004-06-182-9/+7
|