summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Set TARGET_ARCH and install files -fschg as we do the kernel module.obrien2001-03-041-0/+3
|
* Fix whitespace.obrien2001-03-041-2/+2
|
* Disable interface checking for packets subject to "ipfw fwd".truckman2001-03-041-3/+4
| | | | Chris Johnson <cjohnson@palomine.net> tested this fix in -stable.
* Correct the comment above MAKE_IDEA to be less confusing now that wekris2001-03-042-18/+18
| | | | only have one patented algorithm in make.conf.
* Add code for being compatible with ssh.com's krb5 authentication.assar2001-03-0413-178/+165
| | | | | | | | | It is done by using the same ssh messages for v4 and v5 authentication (since the ssh.com does not now anything about v4) and looking at the contents after unpacking it to see if it is v4 or v5. Based on code from Björn Grönvall <bg@sics.se> PR: misc/20504
* Disable interface checking when IP forwarding is engaged so that packetstruckman2001-03-041-10/+45
| | | | | | | | | | | | | | | | | | | | | | | | addressed to the interface on the other side of the box follow their historical path. Explicitly block packets sent to the loopback network sent from the outside, which is consistent with the behavior of the forwarding path between interfaces as implemented in in_canforward(). Always check the arrival interface when matching the packet destination against the interface broadcast addresses. This bug allowed TCP connections to be made to the broadcast address of an interface on the far side of the system because the M_BCAST flag was not set because the packet was unicast to the interface on the near side. This was broken when the directed broadcast code was removed from revision 1.32. If the directed broadcast code was stil present, the destination would not have been recognized as local until the packet was forwarded to the output interface and ether_output() looped a copy back to ip_input() with M_BCAST set and the receive interface set to the output interface. Optimize the order of the tests. Reviewed by: jlemon
* Remove the field privatemodes from struct __aiocb_private and thealc2001-03-042-149/+2
| | | | | | | related code from aio_read() and aio_write(). This field was intended, but never used, to allow a mythical user-level library to make an aio_read() or aio_write() behave like an ordinary read() or write(), i.e., a blocking I/O operation.
* This commit was generated by cvs2svn to compensate for changes in r73393,kris2001-03-032-16/+35
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import vendor fix for buffer overflow in HOME environment variablekris2001-03-032-16/+35
| |
* | Small style fix, remove highlight from second list in FILES section.cokane2001-03-031-2/+2
| |
* | Added a man page for the tdfx 3Dfx Voodoo I/II device drivercokane2001-03-032-0/+84
| |
* | include paths.h for _PATH_DEVmjacob2001-03-031-0/+1
| |
* | Change mon_decimal_point from "." to "" (N/A>) as it is specified by POSIX forache2001-03-031-1/+1
| | | | | | | | POSIX locale.
* | Add some default hints for isp.mjacob2001-03-032-0/+30
| |
* | Preserve comma as separator when it is not equal to radix characterache2001-03-031-2/+7
| |
* | Remove the copyinstr call which was trying to copy the pathname in fromdfr2001-03-032-6/+0
| | | | | | | | | | | | | | | | | | user space. It has already been copied in and mp->mnt_stat.f_mntonname has already been initialised by the caller. This fixes a panic on the alpha caused by the fact that the variable 'size' wasn't initialised because the call to copyinstr() bailed out with an EFAULT error.
* | Account for the new flags field in struct trapframe.dfr2001-03-031-1/+1
| |
* | Harvest interrupt entropy off the floppy disk controller.markm2001-03-032-2/+4
| |
* | Take down a comment that is no longer true.markm2001-03-031-4/+0
| | | | | | | | /dev/random is ready for prime time!
* | Minor fixes. ManPolice stuff, and a clarification of interruptmarkm2001-03-031-5/+6
| | | | | | | | harvesting.
* | Extra MLINKS to reflect expansion of BUS_SETUP_INTR(9) manpage.markm2001-03-031-0/+3
| |
* | Add a whole lot of extra info. Lots was gained from reading codemarkm2001-03-031-2/+38
| | | | | | | | | | | | | | | | or comments, and some is as a result of simply documenting the entropy harvester. This still needs work: could a newbus guru pleazse follow up and fix.extend my (no doubt) obvious mistakes!
* | Support inheritance of the "nodump" flag down a hierarchy.obrien2001-03-032-26/+82
| | | | | | | | | | Submitted by: Dima Dorfman <dima@unixfreak.org> Obtained from: NetBSD
* | Add support for Dlink DL10022 to the ed driver. This is a mii partimp2001-03-039-10/+298
| | | | | | | | | | | | | | | | | | | | | | | | | | | | bolted to a ne-2000 chip. This is necessary for the NetGear FA-410TX and other cards. This also requires you add mii to your kernel if you have an ed driver configured. This code will result in a couple of timeout messages for ed on the impacted cards. Additional work will be needed, but this does work right now, and many people need these cards. Submitted by: Ian Dowse <iedowse@maths.tcd.ie>
* | Fix typo present since 1997: single used mode -> single user mode.asmodai2001-03-031-1/+1
| |
* | Fix INVARIANT_SUPPORT-only builds (without INVARIANTS). The requiredbmilekic2001-03-031-1/+8
| | | | | | | | | | | | `infrastructure' built with INVARIANT_SUPPORT for kern_mutex.c essentially involves _mtx_assert(), which makes use of constants that were defined under #ifdef INVARIANTS here.
* | Cleanups to Macros for sending data between netgraph nodes.julian2001-03-032-63/+32
| |
* | Add parenthesis to a macro.julian2001-03-031-1/+1
| | | | | | | | This took me 2 whole days to track down. (bleah)
* | Small optimization: set use_ampm only when neededache2001-03-033-4/+6
| |
* | Don't use "," as load avg. separator because it can be precision point in someache2001-03-031-1/+1
| | | | | | | | locales, so leads to confusion
* | Use AM/PM time only when available in localeache2001-03-023-4/+9
| |
* | Oops, remove tabs sneaked in wrong placeache2001-03-021-2/+2
| |
* | Use AM/PM time only when available in localeache2001-03-023-7/+10
| |
* | New release notes: TCP NewReno, TCP more aggressive timeouts onbmah2001-03-022-0/+32
| | | | | | | | | | SYN segments, IP verifies destination of received packet with ingress interface, bc update to 1.06, ipfstat -t.
* | Clear am and pm fields, add empty ampm_fmt for locales I know is not AM/PMache2001-03-0213-14/+79
| |
* | Actually implement T_FMT_AMPMache2001-03-021-1/+1
| |
* | Implement ampm_fmt (%r) per POSIXache2001-03-024-9/+22
| |
* | Add a new sysctl net.inet.ip.check_interface, which will verify thatjlemon2001-03-021-1/+5
| | | | | | | | | | an incoming packet arrivees on an interface that has an address matching the packet's address. This is turned on by default.
* | Only pick up so_error the first time through with EISCONN, as advertised.jlemon2001-03-021-1/+1
| | | | | | | | | | | | The sense of the test was reversed, so we were returning EISCONN, then 0. Pointed out and tested by: Martin Blapp <mb@imp.ch>
* | setlocale(3) has been fixed to match POSIX standard:ru2001-03-0222-42/+30
| | | | | | | | LC_ALL takes precedence over other LC_* envariables.
* | POSIX wrote:ru2001-03-023-30/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | : LC_TIME This variable shall determine the format and : contents of date and time strings when the -v : option is specified. Developers took this wrong. LC_TIME specifies the locale name, not the ``format'' argument of strftime(). Oops: pax -w -f /tmp/foo /dev/null LC_TIME=de_DE.ISO_8859-1 pax -v -f /tmp/foo
* | Mismatched MFSNAMELEN and MNAMELEN with fstype / fspath.adrian2001-03-022-4/+4
| | | | | | | | Submitted by: Naoki Kobayashi <shibata@geo.titech.ac.jp>
* | Removed duplicate $FreeBSD$.ru2001-03-021-2/+0
| |
* | Fix setlocale() to conform to the ISO C and POSIX standards.ru2001-03-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The below text is quoted from the latest POSIX draft: : The values of locale categories shall be determined by a precedence : order; the first condition met below determines the value: : : 1. If the LC_ALL environment variable is defined and is not null, : the value of LC_ALL shall be used. : 2. If the LC_* environment variable (LC_COLLATE, LC_CTYPE, LC_MESSAGES, : LC_MONETARY, LC_NUMERIC, LC_TIME) is defined and is not null, the : value of the environment variable shall be used to initialize the : category that corresponds to the environment variable. : 3. If the LANG environment variable is defined and is not null, the : value of the LANG environment variable shall be used. : 4. If the LANG environment variable is not set or is set to the empty : string, the implementation-defined default locale shall be used. The conditions 1 and 2 were interchanged, i.e., LC_* were looked first, then LC_ALL, then LANG (note that LC_ALL and LANG were essentially the same, providing the default, with LC_ALL taking precedence over LANG). Now, LC_ALL and LANG serve the different purposes. LC_ALL overrides any LC_*, and LANG provides the default fallback. Testcase: /usr/bin/env LC_ALL=C LC_TIME=de_DE.ISO_8859-1 /bin/date Should return date in the "C" locale format. Inspired by: date(1) reference page in the Draft
* | mdoc(7) police: fix markup.ru2001-03-026-21/+27
| |
* | mdoc(7) police: in -offset clause, spell the ``indent'' correctly.ru2001-03-022-16/+16
| |
* | Change "NO_PROFILE_DATA" to "NO_PROFILE_COUNTERS" to match the commit byobrien2001-03-021-2/+2
| | | | | | | | | | the FSF/GCC people in the stock 2.97 source that is like our custom change modulo the conditional compilation symbol.
* | Merged from sys/i386/include/bus_at386.h revision 1.13.kato2001-03-021-1/+0
| |
* | Ack! I finally got annoyed enough to actually kill this. There is nopeter2001-03-023-11/+0
| | | | | | | | | | | | need to manually force the network_interfaces variable in /etc/rc.conf, and it only ever gets in the way. rc.network and rc.network6 DTRT with the default of 'auto'. This should have died over a year ago.
* | Fix the rest of formatting.ru2001-03-021-27/+27
| |
OpenPOWER on IntegriCloud