summaryrefslogtreecommitdiffstats
path: root/usr.sbin
Commit message (Collapse)AuthorAgeFilesLines
* Point at cs.slcs_u.csu_ip instead of the just-copied ``cp''brian1999-03-301-19/+9
| | | | | | when recalculating the ip checksum. cp is not guaranteed to be aligned. It now doesn't matter that cp isn't aligned as the caller does another mbuf_Alloc() regardless.
* Bump default root fs sizes, for both i386 and alpha architectures.jkh1999-03-302-12/+12
|
* Maintain a `necessary' marker to indicate that we *probably*brian1999-03-303-14/+37
| | | | | | | | | | | | | | | need to process a signal (usually a SIGALRM). Check to see if we need to process a signal both before *and* after calling select() as older (pre-2.0) versions of ppp used to. This handles the possibility that ppp may block at some point (maybe due to an open() of a misconfigured device). Previously, we'd potentially lock up in select(). The `necessary' marker reduces the increased signal checking overhead so that at full speed with no compression transferring an 83Mb file via a ``!ppp -direct'' device, we get a 1% throughput gain.
* If we adjust our required ACCMAP due to a more restrictivebrian1999-03-291-2/+18
| | | | | | ACCMAP being REQuested by the peer, also increment our FSM id so that we don't end up sending out a new REQ with the same ID and different data (the changed ACCMAP).
* Ensure that the thing we're casting to struct ipbrian1999-03-298-25/+53
| | | | is aligned for non-i386 architectures.
* Fixed world breakage in previous commit. -lwrap was in LDFLAGS wherebde1999-03-291-3/+3
| | | | | | it has no effect. Fixed the usual style bugs for DPADD and LDADD.
* Enable tcp_wrapper support by default.markm1999-03-282-12/+8
|
* Now inetd(8) has direct support for tcp_wrappers! Not working at themarkm1999-03-283-9/+80
| | | | | moment is support for the internal serfvices, so these are not enabled. Volunteers welcome!
* 1. Update TAPE to point to new CAM-style device name.jkh1999-03-271-2/+2
| | | | | | 2. Don't prompt for removal twice on fixit floppy. Submitted by: jack <jack@germanium.xtalwind.net>
* Allow port ranges in ``alias port''.brian1999-03-255-130/+222
|
* Undo possible damage done by the new TUNSIFMODE ioctlbrian1999-03-251-1/+13
| | | | in FreeBSD-current.
* Now bb structures are linked together.phk1999-03-211-5/+5
|
* Use the proper mdoc macrobillf1999-03-201-2/+2
| | | | | PR: docs/9892 Submitted by: Kazuo Horikawa <horikawa@jp.freebsd.org>
* Offer an X Kern Developer collection, by user request (it's also morejkh1999-03-195-185/+218
| | | | | | | | | orthogonal to the other entries). Clean up X selection code a bit. Choose proper architecture subdirectories on mirror sites now that we've gone fully to the new multi-arch directory scheme.
* Do away with some literal text that is never switchedbrian1999-03-192-14/+12
| | | | off - I *think* these were groff bugs.
* Add /etc/rc.firewall to list of "save after upgrade" targets.jkh1999-03-191-1/+2
|
* Replace hardcoded quoting with Sq or Dq.brian1999-03-192-38/+70
|
* Don't forget to fully initialise the configured valuesbrian1999-03-191-4/+4
| | | | | for MYADDR and HISADDR in ``set ifaddr'' so that unspecified values don't end up retaining their `width'.
* Use ``Sx'' when xref'ing sections.brian1999-03-182-12/+16
|
* Remove all remaining [ and ] characters (and do things properly).brian1999-03-182-24/+106
|
* Fix builds for the AXPgpalmer1999-03-171-6/+1
| | | | Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
* Remove all hardcoded [...] syntax.brian1999-03-172-144/+402
| | | | With help from: Daniel C. Sobral <dcs@newsguy.com>
* Mention changes to the default authentication behaviour.brian1999-03-161-0/+2
|
* Detect pred1 packets where the length != the packet lengthbrian1999-03-161-12/+17
| | | | | | Use a maximum of MAX_MRU + 2 bytes for incoming packets, not MAX_MTU + 2. Tidy up some diagnostics.
* Host names are case-insensitive.brian1999-03-161-2/+2
|
* Fix date parsing to allow '0' (none) date value.davidn1999-03-151-3/+2
|
* Build tcp_wrappers' userland. I am not building tcpd, because in a daymarkm1999-03-143-1/+42
| | | | | or two, inetd will gain the necessary functionality. At that stage, I'll make wrapping the default for sendmail and portmapper as well.
* Submitted by: Matt Dillon <dillon@freebsd.org>julian1999-03-142-9/+101
| | | | | | | | | | | The old VN device broke in -4.x when the definition of B_PAGING changed. This patch fixes this plus implements additional capabilities. The new VN device can be backed by a file ( as per normal ), or it can be directly backed by swap. Due to dependencies in VM include files (on opt_xxx options) the new vn device cannot be a module yet. This will be fixed in a later commit. This commit delimitted by tags {PRE,POST}_MATT_VNDEV
* When printing out V1 info, make sure that there is additional infoimp1999-03-131-2/+8
| | | | | | | | | | | before printing it. Terminate when we come to a 0xff byte. This allows there to be zero or more additional info fields printed correctly. Before, the old code would print bogons or dump core when presented with this case. I don't know what the spec says about this, exactly, but this allows me to do a dumpcis of my non-ATA AMP 4M FLASH cards w/o pccardc dumping core.
* src/usr.sbin/natd -> src/sbin/natd (after a repo-copy by jdp)brian1999-03-1210-2371/+1
|
* Change permissions on /etc/ppp/ppp.conf to 0640.brian1999-03-111-1/+3
|
* Make proper symlinks for fixit mode and ELF binaries.jkh1999-03-112-10/+24
| | | | Noticed by: jdp
* Fix a diagnostic typobrian1999-03-111-4/+4
| | | | Submitted by: Martin Machacek <mm@i.cz>
* Tone down the log levels (Log{ERROR,WARN} -> LogCCP)brian1999-03-113-16/+18
| | | | | | | | | | | | when we've simply missed a packet. When our Predictor1 CRC is wrong (implying we've dropped a packet), don't send a ResetReq(). Instead, send another CCP ConfigReq(). *shrug* My tests show this as being far worse than the ResetReq as we may have further Nak/Rejs etc and we're basically resetting both our incoming and outgoing compression dictionaries, but rfc1978 says the ConfigReq is correct, so we'd better go along...
* Also look under FREEBSD/.. for distribution files; I meant to do thisjkh1999-03-101-1/+4
| | | | for the DOS distro.
* Keyboard driver update in preparation for the USB keyboard driver.yokota1999-03-101-33/+12
| | | | | | | | | | | | | | | | | | | | | | | - Refined internal interface in keyboard drivers so that: 1. the side effect of device probe is kept minimal, 2. polling mode function is added, 3. and new ioctl and configuration options are added (see below). - Added new ioctl: KDSETREPEAT Set keyboard typematic rate. There has existed an ioctl command, KDSETRAD, for the same purpose. However, KDSETRAD is dependent on the AT keyboard. KDSETREPEAT provides more generic interface. KDSETRAD will still be supported in the atkbd driver. - Added new configuration options: ATKBD_DFLT_KEYMAP Specify a keymap to be used as the default, built-in keymap. (There has been undocumented options, DKKEYMAP, UKKEYMAP, GRKEYMAP, SWKEYMAP, RUKEYMAP, ESKEYMAP, and ISKEYMAP to set the default keymap. These options are now gone for good. The new option is more general.) KBD_DISABLE_KEYMAP_LOADING Don't allow the user to change the keymap.
* Submitted by: Larry Lilejulian1999-03-101-1/+18
| | | | | | | | Move the Olicom token ring driver to the officially sanctionned location of /sys/contrib. Also fix some brokenness in the generic token ring support. Be warned that if_dl.h has been changed and SOME programs might like recompilation.
* Merge some doc updates which got only into the 3.0 branch during the lastjkh1999-03-106-65/+15
| | | | release cycle.
* If /etc/ppp/ppp.conf doesn't exist, mention that thebrian1999-03-091-7/+19
| | | | | | configuration file can't be found rather than saying that the label can't be found. Pointed out by: Greg Black <gjb@comkey.com.au>
* o Use larger minimum root size on alpha.jkh1999-03-094-12/+46
| | | | | | o Use proper architecture subdir when fetching bits from snapshot servers. Submitted by: Doug Rabson <dfr@nlsystems.com>
* Don't destroy the old server socket another ``set server''brian1999-03-081-5/+11
| | | | call fails.
* Don't forget to call modem_Found() when connectingbrian1999-03-071-1/+2
| | | | | via an external program - otherwise we get no throughput stats and connection count increase.
* Add leading 0 in front of octal file permissions number.ghelmer1999-03-072-4/+4
| | | | | OK'ed by: Brian Somers <brian@freebsd.org> PR: docs/9843
* Upgrade (almost) to natd 2.0b1brian1999-03-076-122/+282
| | | | | | | | | | | | | | - Transparent proxy support. - PERMANENT_LINK IS NOW OBSOLETE, use redirect_port instead. - Drop support for early FreeBSD 2.2 versions - If separate input & output sockets are being used use them to find out packet direction instead of normal mechanism. This can be handy in complex environments with multiple interfaces. - PPTP redirect support by Dru Nelson <dnelson@redwoodsoft.com> added. - Logging enhancements from Martin Machacek <mm@i.cz> added. Obtained from: Ari Suutari <ari@suutari.iki.fi>
* Support PPTP via libalias (``alias pptp addr'').brian1999-03-077-8/+106
|
* add the dtmfdecode program (added to i4b with 0.71.00) to the i4b userlandhm1999-03-075-1/+279
|
* update the i4b userland to i4b release 0.71.00hm1999-03-0779-442/+632
|
* Support proxying & transparent proxying curtesy of libalias(3).brian1999-03-077-42/+112
| | | | | Order the alias command descriptions. Order the SEE ALSO entries.
* Correctly drop existing connections when reopening the diagnosticbrian1999-03-074-14/+20
| | | | socket.
* Read from fd[0] and write to fd[1] where `fd' is thebrian1999-03-071-12/+12
| | | | result of a pipe(). This matters under OpenBSD.
OpenPOWER on IntegriCloud